diff --git a/web/pages/embed/[username]/[contractSlug].tsx b/web/pages/embed/[username]/[contractSlug].tsx index 83cfb0f3..70148afe 100644 --- a/web/pages/embed/[username]/[contractSlug].tsx +++ b/web/pages/embed/[username]/[contractSlug].tsx @@ -79,12 +79,16 @@ export function ContractEmbed(props: EmbedProps) { creatorId: contract.creatorId, }) - const { height = 0 } = useWindowSize() - - return height < 250 ? ( - - ) : ( - + // return (height < 250px) ? Card : SmolView + return ( + <> +
+ +
+
+ +
+ ) }