Skip to content

Commit

Permalink
Merge pull request #82 from softeerbootcamp4th/fix-build-error
Browse files Browse the repository at this point in the history
[Fix] Build Error
  • Loading branch information
nim-od authored Aug 19, 2024
2 parents b93463d + a487898 commit e8db8ef
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 29 deletions.
2 changes: 1 addition & 1 deletion packages/admin/src/components/appLayout/SideBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
AccordionTrigger,
} from 'src/components/ui/accordion.tsx';
import SideBarRoutes from 'src/constants/sideBarRoutes.ts';
import useAuth from 'src/hooks/useAuth.ts';
import useAuth from 'src/hooks/useAuth.tsx';

interface SideBarProps {
isChecked: boolean;
Expand Down
2 changes: 1 addition & 1 deletion packages/admin/src/pages/start/LoginPage.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useState } from 'react';
import { Button } from 'src/components/ui/button.tsx';
import { Input } from 'src/components/ui/input.tsx';
import useAuth from 'src/hooks/useAuth.ts';
import useAuth from 'src/hooks/useAuth.tsx';

function LoginPage() {
const { login } = useAuth();
Expand Down
26 changes: 0 additions & 26 deletions packages/user/src/pages/ShareRedirectPage.tsx

This file was deleted.

1 change: 0 additions & 1 deletion packages/user/src/pages/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ export { default as EventPage } from './EventPage.tsx';
export { default as HomePage } from './HomePage.tsx';
export { default as KakaoRedirectPage } from './KakaoRedirectPage.tsx';
export { default as NotStartedEventPage } from './NotStartedEventPage.tsx';
export { default as ShareRedirectPage } from './ShareRedirectPage.tsx';

0 comments on commit e8db8ef

Please sign in to comment.