Remove language from accountState
This commit is contained in:
parent
110cc0c769
commit
758ea1be32
1 changed files with 0 additions and 2 deletions
|
|
@ -5,7 +5,6 @@ interface AccountState {
|
||||||
|
|
||||||
account: {
|
account: {
|
||||||
authorized: boolean
|
authorized: boolean
|
||||||
language: 'en' | 'jp'
|
|
||||||
user: {
|
user: {
|
||||||
id: string
|
id: string
|
||||||
username: string
|
username: string
|
||||||
|
|
@ -18,7 +17,6 @@ interface AccountState {
|
||||||
export const initialAccountState: AccountState = {
|
export const initialAccountState: AccountState = {
|
||||||
account: {
|
account: {
|
||||||
authorized: false,
|
authorized: false,
|
||||||
language: 'en',
|
|
||||||
user: undefined
|
user: undefined
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue