From 8a8484c58acd8a327d6749b2180c504e873a135a Mon Sep 17 00:00:00 2001 From: Alexandr Kazachenko Date: Tue, 19 Nov 2024 11:22:52 +0500 Subject: [PATCH] chore: fix hooks store registry import (#5109) --- libs/hook-dapp-lib/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/hook-dapp-lib/src/index.ts b/libs/hook-dapp-lib/src/index.ts index aecd63a181..a1c5405fea 100644 --- a/libs/hook-dapp-lib/src/index.ts +++ b/libs/hook-dapp-lib/src/index.ts @@ -3,5 +3,5 @@ export * from './hookDappIframeTransport' export * from './types' export * from './consts' export * from './utils' -import * as hookDappsRegistry from './hookDappsRegistry.json' +import hookDappsRegistry from './hookDappsRegistry.json' export { hookDappsRegistry }