Skip to content

Commit

Permalink
fix unlock success screen
Browse files Browse the repository at this point in the history
  • Loading branch information
overheadhunter committed May 30, 2024
1 parent e947139 commit c936e11
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/src/components/UnlockSuccess.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ const props = defineProps<{
}>();
const accountState : ComputedRef<AccountState> = computed(() => {
const publicKey = me.value?.publicKey;
if (!publicKey) {
if (!me.value?.setupCode) {
return AccountState.RequiresSetup;
} else {
return AccountState.Ready;
Expand Down

0 comments on commit c936e11

Please sign in to comment.