Skip to content

Commit

Permalink
πŸ›  fix : 마이포즈 λΆλ§ˆν¬μ—μ„œ μƒμ„ΈνŽ˜μ΄μ§€ 이동 μ•ˆλ˜λŠ” 이슈
Browse files Browse the repository at this point in the history
  • Loading branch information
seondal committed Apr 12, 2024
1 parent 3af896d commit 1419fb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/auth/logout/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Page() {
useEffect(() => {
if (token) {
patchLogout(token.accessToken, token.refreshToken).then(() => {
alert('λ‘œκ·Έμ•„μ›ƒ λ˜μ—ˆμ–΄μš”');
alert('λ‘œκ·Έμ•„μ›ƒ λ˜μ—ˆμŠ΅λ‹ˆλ‹€');
});
}
clearUser();
Expand Down
2 changes: 1 addition & 1 deletion src/components/Feed/Photo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function Photo({ imageKey, source, id, isMarked }: Photo) {
height: 'auto',
}}
onLoad={() => setLoaded(true)}
onClick={() => router.push(`detail/${id}`)}
onClick={() => router.push(`/detail/${id}`)}
/>
{loaded && <BookmarkButton isMarked={isMarked} poseId={id} />}
</>
Expand Down

0 comments on commit 1419fb6

Please sign in to comment.