From 48adc8be6c1b273af95ba7b6cd9b6f9a322e083b Mon Sep 17 00:00:00 2001 From: Mathis Date: Fri, 14 Jun 2024 12:47:41 +0200 Subject: [PATCH] refactor(interface): modify import statement in userdata.interface.ts This change adjusts the import statement to correctly import the ICryptoInUserWalletInfo. Previously, the incorrect syntax was causing import errors and this revision resolves that issue. --- src/interfaces/userdata.interface.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/userdata.interface.ts b/src/interfaces/userdata.interface.ts index 2588373..c8411e5 100644 --- a/src/interfaces/userdata.interface.ts +++ b/src/interfaces/userdata.interface.ts @@ -1,5 +1,5 @@ import { - ICryptoInUserWalletInfo, + type ICryptoInUserWalletInfo, type ICryptoInWalletInfo, IUserWalletCryptos, } from "@/interfaces/crypto.interface";