Skip to content

Commit 6cdcae7

Browse files
committed
๐Ÿ› fix(#170): ํŽธ์ง€ ์ „์†ก ์™„๋ฃŒ ํŽ˜์ด์ง€๋กœ ๋ผ์šฐํ„ฐ ์ด๋™ ์‹œ isGuest ์—ฌ๋ถ€ params ์ „๋‹ฌ
1 parent c753bc8 commit 6cdcae7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

โ€Žsrc/app/send/(process)/preview/page.tsxโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const SendPreviewPage = () => {
148148
console.log(status);
149149
if (status.isShared) {
150150
console.log('์™„๋ฃŒ');
151-
router.push('/send/complete');
151+
router.push(`/send/complete${isGuest ? '?guest=true' : ''}`);
152152
clearInterval(interval); // ํด๋ง ์ค‘๋‹จ
153153
}
154154
} catch (error) {

0 commit comments

Comments
ย (0)