Skip to content

Commit

Permalink
fix: pull 버그
Browse files Browse the repository at this point in the history
  • Loading branch information
ananjaemin committed Nov 2, 2022
1 parent 57d9b22 commit aac0261
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import {
DownloadPage,
DeletePage,
FileListPage,
ApiPage,
NotFoundPage,
} from './pages';
import { MainPage, SuccessPage, DownloadPage, DeletePage, FileListPage, ApiPage } from './pages';
import { store } from './state/store';

export const App: React.FC = () => (
Expand Down
1 change: 0 additions & 1 deletion src/pages/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ export * from './delete';
export * from './filelist';
export * from './api';
export * from './notfound';

3 changes: 0 additions & 3 deletions src/pages/main/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,6 @@ export const MainPage: React.FC = () => {
label={'다운로드 횟수'}
/>
<CheckBox
click={() => {
setPasswordBoolean(!passwordBoolean);
}}
click={() => setPasswordBoolean(!passwordBoolean)}
isCheck={passwordBoolean}
label={'비밀번호'}
Expand Down

0 comments on commit aac0261

Please sign in to comment.