From 8897a9dc7adaab3dbd2ea03b1e586f2fd433df54 Mon Sep 17 00:00:00 2001 From: Chris Taylor Date: Wed, 15 Jan 2025 11:28:27 +0000 Subject: [PATCH] Set localhost as allowed domain --- dev/scripts/src/setup/dapp.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev/scripts/src/setup/dapp.ts b/dev/scripts/src/setup/dapp.ts index 44e85d7ab9..aa187bb2d4 100644 --- a/dev/scripts/src/setup/dapp.ts +++ b/dev/scripts/src/setup/dapp.ts @@ -22,5 +22,7 @@ export async function registerSiteKey( const logger = env.logger; const tasks = new Tasks(env); logger.info(" - siteKeyRegister"); - await tasks.clientTaskManager.registerSiteKey(siteKey as string, {}); + await tasks.clientTaskManager.registerSiteKey(siteKey as string, { + domains: ["localhost"], + }); }