update assets

This commit is contained in:
julian 2024-07-24 12:42:33 -06:00 committed by julian-CStack
parent ce1b1f0ffb
commit 751adb50bd
2 changed files with 3 additions and 1 deletions

View file

@ -31,7 +31,9 @@ final pThemeService = Provider<ThemeService>((ref) {
});
class ThemeService {
static const _currentDefaultThemeVersion = 15;
// dumb quick conditional based on name. Should really be done better
static const _currentDefaultThemeVersion =
AppConfig.appName == "Campfire" ? 17 : 15;
ThemeService._();
static ThemeService? _instance;
static ThemeService get instance => _instance ??= ThemeService._();