Skip to content

Commit 16ab7da

Browse files
authored
[Dashboard] Fix: Do NOT use next's image component (#7869)
1 parent 467ba50 commit 16ab7da

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/dashboard/src/app/pay/[id]/page.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { ShieldCheckIcon } from "lucide-react";
22
import type { Metadata } from "next";
3-
import Image from "next/image";
43
import { Bridge, defineChain, toTokens } from "thirdweb";
54
import { getChainMetadata } from "thirdweb/chains";
65
import { shortenAddress } from "thirdweb/utils";
@@ -86,7 +85,7 @@ export default async function PayPage({
8685
<div>
8786
<div className="flex flex-row items-center justify-start gap-4">
8887
{projectMetadata.image && (
89-
<Image
88+
<img
9089
src={
9190
resolveSchemeWithErrorHandler({
9291
uri: projectMetadata.image,

0 commit comments

Comments
 (0)