Skip to content

Commit

Permalink
Merge pull request #42 from lanchana/fix-key-delete
Browse files Browse the repository at this point in the history
Fix key delete
  • Loading branch information
JohnathanWhite authored May 30, 2022
2 parents ece943a + 08412ea commit 734dd66
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/navigation/wallet/screens/KeyOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@ const KeyOverview: React.FC<KeyOverviewScreenProps> = ({navigation, route}) => {
Object.values(keys).filter(k => k.backupComplete).length > 1;

useLayoutEffect(() => {
if (!key) {
return;
}

navigation.setOptions({
headerTitle: () => {
return (
Expand Down

0 comments on commit 734dd66

Please sign in to comment.