Summary
pnpm lint fails because Biome wants import reordering/formatting updates in multiple files.
Impact
- Build pipeline is red
- Code style inconsistencies
- Blocks CI checks
Files Affected
src/components/Layout.tsx
src/pages/AboutPage.tsx
src/pages/DemosPage.tsx
Recommendation
Apply the formatter to normalize formatting:
pnpm lint:fix
# or
biome check --write .
This maintains the repo standard and keeps diffs small for future contributors.
Source: Code Review (PR #5)
Summary
pnpm lintfails because Biome wants import reordering/formatting updates in multiple files.Impact
Files Affected
src/components/Layout.tsxsrc/pages/AboutPage.tsxsrc/pages/DemosPage.tsxRecommendation
Apply the formatter to normalize formatting:
This maintains the repo standard and keeps diffs small for future contributors.
Source: Code Review (PR #5)