From 27874c2f08cab1b9e84e9cd3f75cba6b6ddbb6bb Mon Sep 17 00:00:00 2001 From: chrisduma-ledger Date: Fri, 29 Nov 2024 12:40:51 +0200 Subject: [PATCH] chore: type --- libs/ledger-live-common/src/wallet-api/Exchange/tracking.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/ledger-live-common/src/wallet-api/Exchange/tracking.ts b/libs/ledger-live-common/src/wallet-api/Exchange/tracking.ts index f3b7897bf931..51fc18798adb 100644 --- a/libs/ledger-live-common/src/wallet-api/Exchange/tracking.ts +++ b/libs/ledger-live-common/src/wallet-api/Exchange/tracking.ts @@ -1,4 +1,3 @@ -import { LiveAppManifest } from "../../platform/types"; import type { AppManifest } from "../types"; /** @@ -51,7 +50,7 @@ export default function trackingWrapper(trackCall: TrackExchange) { }, // No Params to generate an Exchange app nonce - startExchangeNoParams: (manifest: LiveAppManifest) => { + startExchangeNoParams: (manifest: AppManifest) => { track("WalletAPI start Exchange no params", getEventData(manifest)); }, @@ -74,7 +73,7 @@ export default function trackingWrapper(trackCall: TrackExchange) { }, // No Params to complete an Exchange - completeExchangeNoParams: (manifest: LiveAppManifest) => { + completeExchangeNoParams: (manifest: AppManifest) => { track("WalletAPI complete Exchange no params", getEventData(manifest)); }, } as const;