Skip to content

Commit

Permalink
chore: type
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisduma-ledger committed Nov 29, 2024
1 parent 58beb75 commit 27874c2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions libs/ledger-live-common/src/wallet-api/Exchange/tracking.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { LiveAppManifest } from "../../platform/types";
import type { AppManifest } from "../types";

/**
Expand Down Expand Up @@ -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));
},

Expand All @@ -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;
Expand Down

0 comments on commit 27874c2

Please sign in to comment.