Skip to content

Commit

Permalink
Test User redux 로직
Browse files Browse the repository at this point in the history
  • Loading branch information
WooWan committed Oct 15, 2022
1 parent 5a50f7c commit ecdbc4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions store/slices/user.ts → store/slices/user/user.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { RootState } from "./../config";
import { IMember } from "./../../interfaces/member.d";
import { RootState } from "../../config";
import { IMember } from "../../../interfaces/member";
import { createSlice, PayloadAction } from "@reduxjs/toolkit";

type LoginState = {
Expand All @@ -11,7 +11,7 @@ type LogoutState = {
isLogin: false;
};

type UserState = LoginState | LogoutState;
export type UserState = LoginState | LogoutState;

const initialState: UserState = {
user: null,
Expand Down

1 comment on commit ecdbc4d

@vercel
Copy link

@vercel vercel bot commented on ecdbc4d Oct 15, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

escaper-front – ./

escaper-front-git-main-woowan.vercel.app
escaper-front-woowan.vercel.app
escapering.vercel.app

Please sign in to comment.