room & office number fix sending

This commit is contained in:
2026-01-15 06:22:09 +03:00
parent 26a16fa8d7
commit adc98200cb
4 changed files with 18 additions and 8 deletions

View File

@@ -702,7 +702,7 @@ const orderSlice = createSlice({
}
},
updateOrder(state, action: PayloadAction<any>) {
state.order = action.payload;
state.order = { ...state.order, ...action.payload };
if (typeof window !== "undefined") {
localStorage.setItem(
CART_STORAGE_KEYS.ORDER,