From e858f5527b57f7858def45fa03c25dd00028dc92 Mon Sep 17 00:00:00 2001 From: port dev <108868128+portdeveloper@users.noreply.github.com> Date: Sun, 1 Dec 2024 22:54:40 +0300 Subject: [PATCH] This should not fail. --- packages/nextjs/pages/api/og.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nextjs/pages/api/og.tsx b/packages/nextjs/pages/api/og.tsx index 1f550d4..a11878e 100644 --- a/packages/nextjs/pages/api/og.tsx +++ b/packages/nextjs/pages/api/og.tsx @@ -22,7 +22,7 @@ export default async function handler(request: NextRequest) { const isEnsValid = /\.(eth|xyz)$/.test(addyOrEns as string); if (!isAddressValid && !isEnsValid) { - return new Response("Invalid address or ENS", { status: 400 }); + return new Response("Invalid address or ENS!", { status: 400 }); } const response = await fetch(`https://api.ensdata.net/${addyOrEns}`);