From eac6badd835ccdd3bd9f2cc85ba969d231b51bf8 Mon Sep 17 00:00:00 2001 From: nikhil arora Date: Wed, 8 Feb 2023 12:14:59 +0530 Subject: [PATCH] fix: fix build --- .../src/components/Strategies/Bull/MyPosition/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/frontend/src/components/Strategies/Bull/MyPosition/index.tsx b/packages/frontend/src/components/Strategies/Bull/MyPosition/index.tsx index fc36f1e5f..b0ad135e4 100644 --- a/packages/frontend/src/components/Strategies/Bull/MyPosition/index.tsx +++ b/packages/frontend/src/components/Strategies/Bull/MyPosition/index.tsx @@ -9,6 +9,7 @@ import { isBullPositionRefetchingAtom, ethQueuedAtom, zenBullQueuedAtom, + bullEthPnlAtom, } from '@state/bull/atoms' import useStyles from '@components/Strategies/styles' @@ -19,6 +20,7 @@ const BullPosition: React.FC = () => { const bullPosition = useAtomValue(bullCurrentETHPositionAtom) const ethQueued = useAtomValue(ethQueuedAtom) const zenBullQueued = useAtomValue(zenBullQueuedAtom) + const bullEthPnL = useAtomValue(bullEthPnlAtom) const classes = useStyles()