fix code style, use names from api instead of hardcoding for flatmates users

This commit is contained in:
2025-08-28 22:51:18 +02:00
parent c924ab893e
commit c7b03a93f0
16 changed files with 157 additions and 154 deletions
+1 -5
View File
@@ -3,11 +3,7 @@ import "@/App.css";
import Dashboard from "@/components/Dashboard/Dashboard";
function App() {
return (
<>
<Dashboard />
</>
);
return <Dashboard />;
}
export default App;