Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 764db7d

Browse files
authored
Merge pull request #11376 from roiLeo/fix/profile-creation/Avatar
🔧 profile creation remove avatar popover
2 parents 8c56c63 + b975580 commit 764db7d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

components/collection/drop/CreatedBy.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<IdentityModuleIdentityPopover>
2+
<IdentityModuleIdentityPopover :show-popover="showPopover">
33
<template #content>
44
<div
55
class="rounded-full min-w-[236px] h-[62px] md:w-auto border border-k-shade inline-flex justify-start px-2.5"
@@ -29,6 +29,7 @@ const { urlPrefix } = usePrefix()
2929
3030
const props = defineProps<{
3131
address: string
32+
showPopover: boolean
3233
}>()
3334
3435
const { shortenedAddress, identity } = useIdentity({

components/profile/create/stages/Form.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
<div class="flex flex-col gap-10">
33
<div class="flex flex-col gap-3">
44
<span>Setting your profile for</span>
5-
<CollectionDropCreatedBy :address="accountId" />
5+
<CollectionDropCreatedBy
6+
:address="accountId"
7+
:show-popover="false"
8+
/>
69
</div>
710
<form
811
class="flex flex-col gap-10"

0 commit comments

Comments
 (0)