Skip to content

Commit

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

0 comments on commit 0ee586f

Please sign in to comment.