Revert "feat: fix the problem in the Operator Market frontend pages"

This commit is contained in:
Kecheng Sha
2025-12-29 12:00:37 +08:00
committed by GitHub
parent 8f30f71a68
commit 0df7a872e4
213 changed files with 45537 additions and 45547 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;