From 68ce3d01024e84194d85b4d396f9bdf9b547e6d7 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Mon, 1 Apr 2024 14:25:11 +0100 Subject: [PATCH] type fix --- features/strategies/components/Swap/Results.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/strategies/components/Swap/Results.tsx b/features/strategies/components/Swap/Results.tsx index 9c0c2f3..d8a7fb1 100644 --- a/features/strategies/components/Swap/Results.tsx +++ b/features/strategies/components/Swap/Results.tsx @@ -1,7 +1,7 @@ import { ratioOceanToAsi, ratioAgixToAsi, ratioFetToAsi } from '@/constants' import { getTokenBySymbol } from '@/lib/utils' import { type TokenSymbol } from '@/types' -import { usePrices } from '@/features/prices' +import { usePrices, type Prices } from '@/features/prices' import { type Market, useQuote } from '@/features/strategies' import { Result } from '../Result'