Remove unnecessary awaits

This commit is contained in:
vishnukvmd 2024-03-08 20:13:41 +05:30
parent 205dd302da
commit b0f8e331e6
2 changed files with 4 additions and 3 deletions

View file

@ -167,7 +167,7 @@ class SuperLogging {
await setupLogDir();
}
if (sentryIsEnabled) {
await setupSentry();
setupSentry().ignore();
}
Logger.root.level = Level.ALL;
@ -250,7 +250,7 @@ class SuperLogging {
// add error to sentry queue
if (sentryIsEnabled && rec.error != null) {
await _sendErrorToSentry(rec.error!, null);
_sendErrorToSentry(rec.error!, null).ignore();
}
}

View file

@ -56,7 +56,8 @@ class _LockScreenState extends State<LockScreen> with WidgetsBindingObserver {
text: context.l10n.unlock,
iconData: Icons.lock_open_outlined,
onTap: () async {
await _showLockScreen(source: "tapUnlock");
// ignore: unawaited_futures
_showLockScreen(source: "tapUnlock");
},
),
),