Skip to content

Commit

Permalink
fix: allow space avatar edition on testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Oct 9, 2024
1 parent b4166c3 commit 739ece0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SettingsProfileBlock.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ const avatarNotReactive = ref(form.value.avatar);
<AvatarOverlayEdit
:loading="uploading"
:avatar="form?.avatar"
:is-view-only="isViewOnly || env === 'demo'"
:is-view-only="isViewOnly"
/>
<div
:class="{
'cursor-not-allowed': isViewOnly || env === 'demo'
'cursor-not-allowed': isViewOnly
}"
class="absolute bottom-[2px] right-0 rounded-full bg-skin-heading p-1"
>
Expand Down

0 comments on commit 739ece0

Please sign in to comment.