diff --git a/dev/scripts/src/setup/dapp.ts b/dev/scripts/src/setup/dapp.ts index 44e85d7ab..aa187bb2d 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"], + }); }