Skip to content

Commit

Permalink
dfgdfg
Browse files Browse the repository at this point in the history
  • Loading branch information
YoctoProductions committed Feb 14, 2025
1 parent acc970d commit b01dba9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/redux/account/slice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import api from '../../api';
export type AccountState = {
email: string;
username: string;
clan: string;
clan: number;
isLoggedIn: boolean;
secret: string;
gems: number;
Expand All @@ -17,7 +17,7 @@ export type AccountState = {
const initialState: AccountState = {
email: '',
username: '',
clan: 'TEST',
clan: 999,
secret: '',
isLoggedIn: false,
gems: 0,
Expand Down Expand Up @@ -118,7 +118,7 @@ const accountSlice = createSlice({
clearAccount: (state) => {
state.email = '';
state.username = '';
state.clan = 'TEST';
state.clan = 999;
state.secret = '';
state.gems = 0;
state.ultimacy = 0;
Expand Down

0 comments on commit b01dba9

Please sign in to comment.