Summary
Fix ReferenceError caused by an undeclared copyTimeout variable in the web profile page, which breaks the copy-to-clipboard feature.
Contexts
In apps/web/src/routes/u/[username]/+page.svelte, clearTimeout(copyTimeout) is called but copyTimeout is never declared with let/const. This throws a ReferenceError when the copy/share button is clicked, preventing the copy feature from working.
Tasks
Acceptance Criteria
Area
web
Difficulty
Easy
Summary
Fix ReferenceError caused by an undeclared copyTimeout variable in the web profile page, which breaks the copy-to-clipboard feature.
Contexts
In apps/web/src/routes/u/[username]/+page.svelte, clearTimeout(copyTimeout) is called but copyTimeout is never declared with let/const. This throws a ReferenceError when the copy/share button is clicked, preventing the copy feature from working.
Tasks
Acceptance Criteria
Area
web
Difficulty
Easy