π Description
The component in src/pages/Tracker/Tracker.tsx is declared and exported
as Home instead of Tracker, causing a mismatch with the filename,
the router import, and React DevTools output.
Current behavior
// src/pages/Tracker/Tracker.tsx β line 44
const Home: React.FC = () => {
...
}
export default Home;
React DevTools shows this component as <Home> in the component tree,
not <Tracker>, making debugging misleading.
Expected behavior
The component name should match the filename and its usage in the router.
What browsers are you seeing the problem on?
No response
π Relevant Screenshots (Links)
N/A
π Description
The component in
src/pages/Tracker/Tracker.tsxis declared and exportedas
Homeinstead ofTracker, causing a mismatch with the filename,the router import, and React DevTools output.
Current behavior
React DevTools shows this component as
<Home>in the component tree,not
<Tracker>, making debugging misleading.Expected behavior
The component name should match the filename and its usage in the router.
What browsers are you seeing the problem on?
No response
π Relevant Screenshots (Links)
N/A