Skip to content

Commit

Permalink
fix: Fixed a bug where the search page was displaying wrong TOTP codes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Skyost committed Jul 24, 2024
1 parent 0f040e0 commit f738109
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/pages/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,7 @@ class _TotpSearchDelegate extends SearchDelegate<Totp> {
itemBuilder: (context, index) {
Totp totp = searchResults[index];
return TotpWidget(
key: ValueKey(totp.uuid),
totp: totp,
onTap: (context) => close(context, totp),
);
Expand Down

0 comments on commit f738109

Please sign in to comment.