chore: entfernt Standardwerte für mapId/userId in urlParameterSlice (jetzt null statt '10'/'484')

This commit is contained in:
ISA
2025-05-19 08:43:14 +02:00
parent 651326b532
commit 37c41f71f4
3 changed files with 19 additions and 10 deletions

View File

@@ -2,8 +2,8 @@
import { createSlice } from "@reduxjs/toolkit";
const initialState = {
mapId: "10",
userId: "484",
mapId: null,
userId: null,
};
const urlParameterSlice = createSlice({