Skip to content

Commit

Permalink
Merge pull request #1515 from 42organization/fix/#1514-login-page-error
Browse files Browse the repository at this point in the history
[test-deploy] fix: 로그인체크 해제
  • Loading branch information
cweedlee authored Aug 31, 2024
2 parents 4ffc625 + 7fe08a6 commit c0ad6e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/LoginChecker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ interface LoginCheckerProps {
}

export default function LoginChecker({ children }: LoginCheckerProps) {
return <>{children}</>;
// return <>{children}</>;

const [isLoading, loggedIn] = useLoginCheck();
return <>{children}</>;
// return <>{children}</>;

return loggedIn ? (
<>{children}</>
Expand Down

0 comments on commit c0ad6e3

Please sign in to comment.