Skip to content

Commit

Permalink
fix: 인앱브라우저안내 토스트 두번 띄워지는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cheonjiyun committed Sep 8, 2024
1 parent 7acf26f commit 3f12957
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/routers/CheckInAppBrowser.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { useEffect } from 'react';
import { Toaster } from 'react-hot-toast';

import { notifyUseToast } from '../components/toast/NotifyToast';

Expand All @@ -17,10 +16,5 @@ export default function CheckInAppBrowser({ children }: propsType) {
}
}, []);

return (
<>
<Toaster />
{children}
</>
);
return <>{children}</>;
}

0 comments on commit 3f12957

Please sign in to comment.