refactor(ui): use zod for all redux state

This commit is contained in:
psychedelicious
2025-07-25 13:13:28 +10:00
parent 6962536b4a
commit aed9b1013e
39 changed files with 488 additions and 299 deletions

View File

@@ -35,6 +35,6 @@ export const selectChangeBoardModalSlice = (state: RootState) => state.changeBoa
export const changeBoardModalSliceConfig: SliceConfig<typeof slice> = {
slice,
zSchema: zChangeBoardModalState,
schema: zChangeBoardModalState,
getInitialState,
};