Description
src/components/ThemeToggle.tsx imports useEffect and useState from "react" on both line 3 and line 5, causing a compilation error:
Steps to Reproduce
- Run
bun run build
- Build fails with duplicate identifier error
Fix
Remove the duplicate import on line 5 (or line 3).
Additional Context
Discovered while working on issue #1227.
Description
src/components/ThemeToggle.tsximportsuseEffectanduseStatefrom"react"on both line 3 and line 5, causing a compilation error:Steps to Reproduce
bun run buildFix
Remove the duplicate import on line 5 (or line 3).
Additional Context
Discovered while working on issue #1227.