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
commit 8265ce48c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 69 additions and 2 deletions

View file

@ -225,3 +225,9 @@ export enum FontType {
}
export type TitleTheme = 'dark' | 'light' | 'system';
export enum AuthState {
INVALID = 'invalid',
LOADING = 'loading',
VALID = 'valid',
}