polishing a rock of shit

This commit is contained in:
2024-04-12 22:17:13 +03:00
parent f887d5ef07
commit 8df8f5a2e9
6 changed files with 66 additions and 6 deletions

View File

@ -19,11 +19,11 @@ const initialAuthDataState: AuthDataType = {
};
export type SettingsType = {
language: string | null;
language: string | undefined;
};
const initialSettingsState: SettingsType = {
language: null,
language: undefined,
};
export type StorePrototype = {