Description
The MoreVertical icon from lucide-react is used in MyFiles.tsx at lines 1628 and 1955 but is never imported at the top of the file. This causes a TypeScript error and will break the build in strict mode.
Error
Cannot find name 'MoreVertical'. ts(2304)
Line 1628
Line 1955
File
client/src/components/Home/MyFiles.tsx
Steps to Reproduce
- Open the project in VS Code
- Open
client/src/components/Home/MyFiles.tsx
- TypeScript will immediately highlight lines 1628 and 1955 with the error
Expected Behaviour
MoreVertical should be imported from lucide-react alongside other icon imports.
Fix
Add MoreVertical to the lucide-react import block at the top of the file.
Description
The
MoreVerticalicon fromlucide-reactis used inMyFiles.tsxat lines 1628 and 1955 but is never imported at the top of the file. This causes a TypeScript error and will break the build in strict mode.Error
Cannot find name 'MoreVertical'. ts(2304)
Line 1628
Line 1955
File
client/src/components/Home/MyFiles.tsxSteps to Reproduce
client/src/components/Home/MyFiles.tsxExpected Behaviour
MoreVerticalshould be imported fromlucide-reactalongside other icon imports.Fix
Add
MoreVerticalto the lucide-react import block at the top of the file.