Skip to content

Commit

Permalink
ci: test
Browse files Browse the repository at this point in the history
  • Loading branch information
farrah-deriv committed Apr 24, 2024
1 parent b75546b commit 60edd85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build": "vite build",
"fix": "eslint \"./src/**/*.?(js|jsx|ts|tsx)\" --fix",
"preview": "vite preview",
"test:lint": "prettier --log-level silent --write . && eslint \"./src/**/*.?(js|jsx|ts|tsx)\"",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Modals/ShareAdsModal/ShareAdsModal.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { memo, MouseEvent, useEffect, useRef } from 'react';
import { MouseEvent, useEffect, useRef } from 'react';
import html2canvas from 'html2canvas';
import { Clipboard } from '@/components';
import { ADVERTISER_URL, BUY_SELL, RATE_TYPE } from '@/constants';
Expand Down Expand Up @@ -160,4 +160,4 @@ const ShareAdsModal = ({ id, isModalOpen, onRequestClose }: TShareAdsModalProps)
);
};

export default memo(ShareAdsModal);
export default ShareAdsModal;

0 comments on commit 60edd85

Please sign in to comment.