Complete main functionallity of backend and frontend.

This commit is contained in:
2026-02-21 18:29:22 +01:00 Verified
parent 3a795418d3
commit 7ce44979b9
16 changed files with 383 additions and 168 deletions
+2 -1
View File
@@ -73,6 +73,7 @@ export default function Dashboard() {
setNavTitle('Dashboard');
setNavSubtitle('');
loadDashboard();
localStorage.removeItem('volley_view');
let ws;
const connect = () => {
@@ -186,7 +187,7 @@ export default function Dashboard() {
<Modal isOpen={showSettings} onClose={() => { setShowSettings(false); setEditTarget(null); }} title={editTarget ? 'Modify Event' : 'Initialize Event'}>
<TournamentForm
tournament={editTarget}
tournamentId={editTarget?.id}
onSuccess={handleSuccess}
onDelete={handleDelete}
/>