競合解決ミスを修正

This commit is contained in:
斎藤 快斗 2023-03-08 10:02:36 +09:00
parent 4ce2bbf823
commit 588e60b762
3 changed files with 1 additions and 7 deletions

View File

@ -2,9 +2,7 @@ import { createSlice } from "@reduxjs/toolkit";
import { LoginState } from "./state";
const initialState: LoginState = {
apps: {
loadState: "Loading",
},
apps: {},
};
export const loginSlice = createSlice({

View File

@ -1,3 +0,0 @@
import { RootState } from "app/store";
export const selectLoadState = (state: RootState) => state.login.apps.loadState;

View File

@ -1 +0,0 @@
export type LoadState = "Loading" | "Loaded" | "LoadError";