We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf226a7 + 98b026b commit 0955294Copy full SHA for 0955294
src/components/Header.tsx
@@ -9,7 +9,8 @@ import IconBell from '@assets/svg/bell';
9
export default function Header() {
10
// 실제로는 로그인 여부를 전역 상태나 context로 받아와야 함
11
// test하려면 로그인 상태를 true로 변경
12
- const [isLoggedIn, setIsLoggedIn] = useState(false);
+ // 빌드 에러로 인해 setIsLoggedIn 변수 앞에 _를 붙여 의도적으로 사용하지 않음을 표시
13
+ const [isLoggedIn, _setIsLoggedIn] = useState(false);
14
15
return (
16
<header className='fixed z-10 w-full border-b border-gray-300 bg-white'>
0 commit comments