Skip to content

Commit

Permalink
Removing wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
hide-on-bush-x committed Aug 31, 2023
1 parent a317565 commit 9352d8e
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions src/components/masa-interface/pages/gallery/index.tsx
Expand Up @@ -5,7 +5,17 @@ import { AddSBT } from './add-sbt';
import { Gallery } from './gallery';
import { GalleryItem } from './galleryItem';
import { BigNumber } from 'ethers';
import { TabsInterface } from '../../../../refactor/masa/interfaces';
interface GalleryMetadata {
image?: string;
name?: string;
description?: string;
tokenURI?: string;
}

interface TabsInterface {
items: GalleryMetadata[];
title: string;
}

const handleRender = (SBT: any) => {
const getMetadata = () => {
Expand Down Expand Up @@ -102,9 +112,9 @@ const GalleryContainer = () => {
useModalSize?.(
typeof window !== 'undefined' && fullScreenGallery
? {
width: window.innerWidth * 0.95,
height: window.innerHeight * 0.95,
}
width: window.innerWidth * 0.95,
height: window.innerHeight * 0.95,
}
: { width: 1100, height: 800 }
);

Expand Down

0 comments on commit 9352d8e

Please sign in to comment.