fix error

This commit is contained in:
2025-12-05 14:52:31 +01:00
parent b1b6b0ce4d
commit 186193c450
+1 -4
View File
@@ -68,10 +68,7 @@ function App() {
</button>
</div>
<Routes>
<Route
path="/"
element={<PersonList people={people} onRefresh={fetchPeople} />}
/>
<Route path="/" element={<PersonList people={people} />} />
<Route path="/games" element={<GameList />} />
<Route path="/filter" element={<GameFilter />} />
<Route path="/person/:name" element={<PersonDetails />} />