From 6267dfd51227cdaaeec7af81c6c422fad6079718 Mon Sep 17 00:00:00 2001 From: WardPearce Date: Fri, 13 Feb 2026 19:02:49 +1300 Subject: [PATCH] Update minter.ts --- materialious/src/lib/web/youtube/minter.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/materialious/src/lib/web/youtube/minter.ts b/materialious/src/lib/web/youtube/minter.ts index e13ae3fd..9e987b5b 100644 --- a/materialious/src/lib/web/youtube/minter.ts +++ b/materialious/src/lib/web/youtube/minter.ts @@ -5,11 +5,6 @@ export async function webPoTokenMinter( visitorData: string, challenge: IGetChallengeResponse ): Promise { - console.log({ - requestKey, - visitorData, - challenge - }); const resp = await fetch('/api/poToken/', { body: JSON.stringify({ requestKey, @@ -25,7 +20,7 @@ export async function webPoTokenMinter( errorMsg = (await resp.json()).message; } catch { // Ignore error - } + } throw new Error(errorMsg); }