diff --git a/components/gallery/GalleryItemButton/GalleryItemButton.vue b/components/gallery/GalleryItemButton/GalleryItemButton.vue
index 1816fe5e13..9854955cd4 100644
--- a/components/gallery/GalleryItemButton/GalleryItemButton.vue
+++ b/components/gallery/GalleryItemButton/GalleryItemButton.vue
@@ -6,11 +6,7 @@
@@ -20,9 +16,8 @@ import GalleryItemMoreActionBtn from './GalleryItemMoreActionBtn.vue'
import { extractTwitterIdFromDescription } from '@/utils/parse'
const { $i18n } = useNuxtApp()
-const imageData = ref()
-const { getNft: nft, getNftMetadata: nftMetadata, getNftMimeType: nftMimeType, getAbi: abi } = storeToRefs(useNftStore())
+const { getNft: nft, getAbi: abi } = storeToRefs(useNftStore())
const customSharingContent = computed(() => {
const twitterId = nft.value?.meta?.description
@@ -31,8 +26,6 @@ const customSharingContent = computed(() => {
return twitterId ? $i18n.t('sharing.nftWithArtist', [twitterId]) : ''
})
-
-onKodahashRenderCompleted(({ payload }) => imageData.value = payload.image)