Skip to content

Commit

Permalink
🔧 profile creation remove avatar popover
Browse files Browse the repository at this point in the history
  • Loading branch information
roiLeo committed Jan 23, 2025
1 parent 47d8d28 commit 335596f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion components/collection/drop/CreatedBy.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<IdentityModuleIdentityPopover>
<IdentityModuleIdentityPopover :show-popover="showPopover">
<template #content>
<div
class="rounded-full min-w-[236px] h-[62px] md:w-auto border border-k-shade inline-flex justify-start px-2.5"
Expand Down Expand Up @@ -29,6 +29,7 @@ const { urlPrefix } = usePrefix()
const props = defineProps<{
address: string
showPopover: boolean
}>()
const { shortenedAddress, identity } = useIdentity({
Expand Down
5 changes: 4 additions & 1 deletion components/profile/create/stages/Form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
<div class="flex flex-col gap-10">
<div class="flex flex-col gap-3">
<span>Setting your profile for</span>
<CollectionDropCreatedBy :address="accountId" />
<CollectionDropCreatedBy
:address="accountId"
:show-popover="false"
/>
</div>
<form
class="flex flex-col gap-10"
Expand Down

0 comments on commit 335596f

Please sign in to comment.