From 7cbafaaa55ac11efd06a07c10d0340037b4291d7 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centrifuge-app/src/pages/Pools.tsx b/centrifuge-app/src/pages/Pools.tsx index 90273f561..02a4ed063 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 { useListedPools } from '../../src/utils/useListedPools' import { LayoutSection } from '../components/LayoutBase/LayoutSection' import { PoolList } from '../components/PoolList'