Remove language from accountState

This commit is contained in:
Justin Edmund 2022-03-05 01:18:08 -08:00
parent 110cc0c769
commit 758ea1be32

View file

@ -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
} }
} }