Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -160,20 +160,23 @@ export function ClaimTransactionResults({
<TableCell>
<span className="flex items-center gap-2">
{result.network === "Base Sep" && (
// eslint-disable-next-line @next/next/no-img-element
<img
src="/BaseSep.png"
alt="Base"
className="h-4 w-4"
/>
)}
{result.network === "OP Sep" && (
// eslint-disable-next-line @next/next/no-img-element
<img
src="/OP.png"
alt="Optimism Sep"
className="h-4 w-4"
/>
)}
{result.network === "Ethereum" && (
// eslint-disable-next-line @next/next/no-img-element
<img
src="/Ethereum.png"
alt="Ethereum"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,20 +158,23 @@ export function ClaimTransactionResults({
<TableCell>
<span className="flex items-center gap-2">
{result.network === "Base Sep" && (
// eslint-disable-next-line @next/next/no-img-element
<img
src="/BaseSep.png"
alt="Base"
className="h-4 w-4"
/>
)}
{result.network === "OP Sep" && (
// eslint-disable-next-line @next/next/no-img-element
<img
src="/OP.png"
alt="Optimism Sep"
className="h-4 w-4"
/>
)}
{result.network === "Ethereum" && (
// eslint-disable-next-line @next/next/no-img-element
<img
src="/Ethereum.png"
alt="Ethereum"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ export function ERC1155MintTo() {
{account && (
<div className="mt-6 w-full max-w-[400px]">
{image ? (
// eslint-disable-next-line @next/next/no-img-element
<img
src={resolveIpfsUrl(image)}
alt="NFT Preview"
Expand Down
Loading