Skip to content

Commit

Permalink
Env: deploy error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KimKyuHoi committed Aug 16, 2024
1 parent e78f092 commit c14d493
Show file tree
Hide file tree
Showing 12 changed files with 1,003 additions and 2,840 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"react-bootstrap": "^2.10.4",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-ga4": "^2.1.0",
"react-hook-form": "^7.51.3",
"react-hot-toast": "^2.4.1",
"react-lazy-load-image-component": "^1.6.2",
Expand Down
3,830 changes: 998 additions & 2,832 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ import { RouterProvider } from 'react-router-dom';

import { GlobalStyle } from '@gdsc/styles/GlobalStyle';

import RouterChangeTracker from './utils/RouterChangeTracker';
import { Global } from '@emotion/react';
import { Router } from '@gdsc/router/Router';

function App() {
return (
<>
<Global styles={GlobalStyle} />
<RouterChangeTracker />
<RouterProvider router={Router} />
</>
);
Expand Down
1 change: 0 additions & 1 deletion src/api/.gitkeep

This file was deleted.

2 changes: 1 addition & 1 deletion src/apis/hooks/admin/useGetSearchList.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { fetchInstance } from '@gdsc/apis/instance/Api_JWT';

import { userListInterface } from './useGetUserList';
import { userListInterface } from './status/useGetUserList';
import { useQuery, UseQueryResult } from '@tanstack/react-query';

const getSearchListPath = () => '/api/admin/member/search';
Expand Down
1 change: 0 additions & 1 deletion src/components/.gitkeep

This file was deleted.

Empty file removed src/constants/.gitkeep
Empty file.
1 change: 0 additions & 1 deletion src/hooks/.gitkeep

This file was deleted.

1 change: 0 additions & 1 deletion src/interface/.gitkeep

This file was deleted.

2 changes: 1 addition & 1 deletion src/pages/admin/components/status/MemberTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { columns } from '@gdsc/constants/MemberTableColumns';
import {
userListInterface,
useGetUserList,
} from '@gdsc/apis/hooks/admin/useGetUserList';
} from '@gdsc/apis/hooks/admin/status/useGetUserList';

import { useSelectedUserStore } from '@gdsc/store/useSelectedUserStore';

Expand Down
1 change: 0 additions & 1 deletion src/store/.gitkeep

This file was deleted.

1 change: 0 additions & 1 deletion src/utils/.gitkeep

This file was deleted.

0 comments on commit c14d493

Please sign in to comment.