Skip to content

Commit

Permalink
Chore: 병합오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
LeHiHo committed Jan 4, 2024
1 parent c852b42 commit ec0ebab
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 7 deletions.
41 changes: 41 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/components/search/SearchInput.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ReactComponent as CloseIcon } from '@assets/images/DeleteInput.svg';
import { ReactComponent as LeftIcon } from '@assets/images/Left.svg';
import { ReactComponent as SearchIcon } from '@assets/images/Search.svg';
import { CloseIcon } from '@components/common/icons/Icons';
import { LeftIcon } from '@components/common/icons/Icons';
import { SearchIcon } from '@components/common/icons/Icons';
import React, { useState } from 'react';
import { useNavigate } from 'react-router-dom';

Expand Down
8 changes: 4 additions & 4 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import ReactDOM from 'react-dom/client';
import App from './App.tsx';
import './index.css';

if (import.meta.env.DEV) {
const { worker } = await import('./mocks/browser.ts');
await worker.stop();
}
// if (import.meta.env.DEV) {
// const { worker } = await import('./mocks/browser.ts');
// await worker.stop();
// }

ReactDOM.createRoot(document.getElementById('root')!).render(<App />);

0 comments on commit ec0ebab

Please sign in to comment.