Skip to content

Commit

Permalink
Created update so that users don't lose their wallets.
Browse files Browse the repository at this point in the history
  • Loading branch information
Freshenext committed Oct 3, 2023
1 parent 22fe8af commit 9014b90
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/redux/slices/persistentDataSlice/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ import { createSlice, PayloadAction } from '@reduxjs/toolkit'

import { PersistentDataState } from './types'

// @TODO switch back variable state after 15 days - 1 month (november) (keysExist false by default, isFirst.. true by default)
const initialState: PersistentDataState = {
keysExist: false,
isFirstLaunch: true,
keysExist: true,
isFirstLaunch: false,
}

/**
Expand Down

0 comments on commit 9014b90

Please sign in to comment.