File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ class IsarDb {
178178 static Future <ProfileModel ?> getProfile (String name) async {
179179 final isarProvider = IsarDb ();
180180 final db = await isarProvider.db;
181- final a = db.profileModels.filter ().profileNameEqualTo (name).findFirst ();
181+ final a = await db.profileModels.filter ().profileNameEqualTo (name).findFirst ();
182182 print ('$a appkle' );
183183 return a;
184184 }
Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ class HomeView extends GetView<HomeController> {
443443 Padding (
444444 padding:
445445 EdgeInsets .only (bottom: controller.scalingFactor * 20 ),
446- child: ProfileSelect (),
446+ child: const ProfileSelect (),
447447 ),
448448 Expanded (
449449 child: GlowingOverscrollIndicator (
You can’t perform that action at this time.
0 commit comments