Skip to content

Commit

Permalink
fix: Not displaying desktop action on mobile in debug mode anymore.
Browse files Browse the repository at this point in the history
  • Loading branch information
Skyost committed Jul 12, 2024
1 parent 756794f commit 7467218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/totp/widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class TotpWidget extends StatelessWidget {
contentPadding: contentPadding,
space: space,
displayCode: displayCode,
footerWidgetBuilder: currentPlatform.isDesktop || kDebugMode
footerWidgetBuilder: currentPlatform.isDesktop
? ((context) => _DesktopActionsWidget(
totp: totp,
onDecryptPressed: onDecryptPressed,
Expand Down

0 comments on commit 7467218

Please sign in to comment.