feat: fix the problem in the Operator Market frontend pages

This commit is contained in:
root
2025-12-29 11:38:47 +08:00
parent 29e4a333a9
commit 844add27ea
213 changed files with 45547 additions and 45537 deletions

View File

@@ -1,15 +1,15 @@
import { configureStore } from "@reduxjs/toolkit";
import authSlice from "./slices/authSlice";
import settingsSlice from "./slices/settingsSlice";
// 创建 Store
export const store = configureStore({
reducer: {
auth: authSlice,
settings: settingsSlice,
},
});
// 导出类型
export type RootState = ReturnType<typeof store.getState>;
import { configureStore } from "@reduxjs/toolkit";
import authSlice from "./slices/authSlice";
import settingsSlice from "./slices/settingsSlice";
// 创建 Store
export const store = configureStore({
reducer: {
auth: authSlice,
settings: settingsSlice,
},
});
// 导出类型
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;