From be3cfc08c95bdf55cb655ef7cba8e2c4b936c8dc Mon Sep 17 00:00:00 2001 From: imnyang Date: Tue, 9 Sep 2025 05:46:24 +0900 Subject: [PATCH] Save visit flag in localStorage when tabCount reaches 8; update message to include additional reflection text --- src/components/SUPERCOMMAND.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/SUPERCOMMAND.tsx b/src/components/SUPERCOMMAND.tsx index 05774bc..acf33c4 100644 --- a/src/components/SUPERCOMMAND.tsx +++ b/src/components/SUPERCOMMAND.tsx @@ -58,6 +58,7 @@ export default function SUPERCOMMAND() { if ((event.code === "Space" || event.key === " ") && showPressSpace) { // 원하는 이동 경로로 변경하세요: if (tabCount === 8) { + localStorage.setItem('visited8', 'true'); // 방문 플래그 저장 const redirectList = [ "https://www.youtube.com/watch?v=DjGxGMxvg4M", "https://www.youtube.com/watch?v=oQcaPVGUtuA", @@ -98,7 +99,7 @@ export default function SUPERCOMMAND() { return (

{tabCount} Combo

- {showPressSpace ?

스페이스바를 눌러주세요

: null} + {showPressSpace ?

스페이스바를 눌러주세요.{tabCount === 8 && localStorage.getItem('visited8') ?


우리가 끝이라 생각하는 것은 한번 더 생각해봐야한다
이게 진짜 끝일까? 아님 그냥 그렇게 믿고 싶은 걸까?
뭐 여기서 끝을 보려면 앞으로 1100번은 남은 것 같다.

: null}

: null}
); } \ No newline at end of file