Merge pull request #510 from kgarner7/improve-navidrome-auth

[bugfix]: Check for Navidrome authentication on startup
This commit is contained in:
Jeff
2024-03-04 02:27:10 -08:00
committed by GitHub
3 changed files with 69 additions and 2 deletions
+6
View File
@@ -225,3 +225,9 @@ export enum FontType {
}
export type TitleTheme = 'dark' | 'light' | 'system';
export enum AuthState {
INVALID = 'invalid',
LOADING = 'loading',
VALID = 'valid',
}