mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: using non const value in a const variable
This commit is contained in:
parent
fd43ac7581
commit
29db947e25
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ class HomeView extends StatelessWidget {
|
||||||
},
|
},
|
||||||
child: model.showUpdatableApps
|
child: model.showUpdatableApps
|
||||||
? AvailableUpdatesCard()
|
? AvailableUpdatesCard()
|
||||||
: const InstalledAppsCard(),
|
: InstalledAppsCard(),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue