From b6805145a5eb9cf0871e66c7c21505cb18eeb079 Mon Sep 17 00:00:00 2001 From: katty barroso Date: Thu, 12 Dec 2024 10:28:46 +0100 Subject: [PATCH] fix import --- centrifuge-app/src/pages/Pools.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/centrifuge-app/src/pages/Pools.tsx b/centrifuge-app/src/pages/Pools.tsx index 90273f561..1d938c1c6 100644 --- a/centrifuge-app/src/pages/Pools.tsx +++ b/centrifuge-app/src/pages/Pools.tsx @@ -1,7 +1,7 @@ import { Box, Stack, Text } from '@centrifuge/fabric' import * as React from 'react' -import { Dec } from 'src/utils/Decimal' -import { formatBalance } from 'src/utils/formatting' +import { Dec } from '../../src/utils/Decimal' +import { formatBalance } from '../../src/utils/formatting' import { useListedPools } from '../../src/utils/useListedPools' import { LayoutSection } from '../components/LayoutBase/LayoutSection' import { PoolList } from '../components/PoolList'