Skip to content

Commit

Permalink
Merge pull request #148 from LedgerHQ/fix-ux-glitch
Browse files Browse the repository at this point in the history
Fix get_extended_pubkey and get_wallet_address not returning to dashboard
  • Loading branch information
bigspider authored Apr 21, 2023
2 parents 0981826 + a2f1632 commit 83d5c28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ bool ui_display_pubkey(dispatcher_context_t *context,
ui_display_pubkey_suspicious_flow();
}

return io_ui_process(context, false);
return io_ui_process(context, true);
}

bool ui_display_message_hash(dispatcher_context_t *context,
Expand Down Expand Up @@ -145,7 +145,7 @@ bool ui_display_wallet_address(dispatcher_context_t *context,
ui_display_receive_in_wallet_flow();
}

return io_ui_process(context, false);
return io_ui_process(context, true);
}

bool ui_authorize_wallet_spend(dispatcher_context_t *context, const char *wallet_name) {
Expand Down

0 comments on commit 83d5c28

Please sign in to comment.