There are various places in the code where variables are defined but never used.
Eg:
|
const location = useLocation(); |
|
import { motion, AnimatePresence } from "framer-motion"; |
Whenever you run the application, you get the warning in the console and you can use it to find the places where it happens.
All of this needs to be removed/handled appropriately,
There are various places in the code where variables are defined but never used.
Eg:
cosh-website/src/App.js
Line 29 in 206ad2f
cosh-website/src/Components/Navbar/Navbar.jsx
Line 9 in 206ad2f
Whenever you run the application, you get the warning in the console and you can use it to find the places where it happens.
All of this needs to be removed/handled appropriately,