Skip to content

Commit 0fa7857

Browse files
Gregg CochranCopilot
andcommitted
Fix: duplicate waveOffset declaration crashing strict mode JS
The variable was declared on both line 830 (pulse wave) and line 900 (terminal demo), causing a SyntaxError in strict mode that killed the entire script — hiding all sections below the hero. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 72e8764 commit 0fa7857

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

site/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ <h2 class="section-title glow-green">Up and Running in 30 Seconds</h2>
897897
const heartbeats=['💗','💖','💓','❤️','💓','💗'];
898898
const W=59;
899899

900-
let waveOffset=0,heartIdx=0;
900+
let heartIdx=0;
901901
let uptimeStart=Date.now();
902902
let bannerTyped=false;
903903
let waveTimer=null,heartTimer=null,uptimeTimer=null;

0 commit comments

Comments
 (0)