Consider language from user settings (#1179)

This commit is contained in:
Thomas Kaul
2022-08-21 18:06:31 +02:00
committed by GitHub
parent df0e9ad03b
commit 56bf422407
5 changed files with 22 additions and 6 deletions

View File

@@ -3,6 +3,7 @@ import { ViewMode } from '@prisma/client';
export interface UserSettings {
baseCurrency?: string;
isRestrictedView?: boolean;
language?: string;
locale: string;
viewMode?: ViewMode;
}