Skip to content

Commit

Permalink
[fix] boostcampwm-2022#179 처음 접속 시 도움말 나오도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JJongBin committed Dec 11, 2022
1 parent 1682648 commit 9a65e16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/component/Info/Help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ const Help = () => {

useEffect(() => {
const openHelp = localStorage.getItem('openHelp');
if (openHelp === 'open') {

if (openHelp !== 'close') {
setIsShowModal(true);
isSetOpen(true);
}
Expand Down

0 comments on commit 9a65e16

Please sign in to comment.