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: {
authorized: boolean
language: 'en' | 'jp'
user: {
id: string
username: string
@ -18,7 +17,6 @@ interface AccountState {
export const initialAccountState: AccountState = {
account: {
authorized: false,
language: 'en',
user: undefined
}
}