Severity
Beginner
Affected File
src/components/BackToTop.jsx
Detailed Description
The scroll component is implemented as a .jsx file, which is the only Javascript extension component inside a fully configured TypeScript Next.js layout, causing compile warnings and missing prop type definitions during production builds.
Proposed Solution
Rename the file extension to .tsx and add proper type signatures for React hook elements.
Severity
Beginner
Affected File
src/components/BackToTop.jsxDetailed Description
The scroll component is implemented as a
.jsxfile, which is the only Javascript extension component inside a fully configured TypeScript Next.js layout, causing compile warnings and missing prop type definitions during production builds.Proposed Solution
Rename the file extension to
.tsxand add proper type signatures for React hook elements.