diff --git a/src/app/strategy/components/Strategy.tsx b/src/app/strategy/components/Strategy.tsx
index 7735a93..25de8d5 100644
--- a/src/app/strategy/components/Strategy.tsx
+++ b/src/app/strategy/components/Strategy.tsx
@@ -268,7 +268,8 @@ const Strategy = () => {
Behind the scenes
- Actions done automatically by the strategy (smart-contract) with an investment of $1000
+ Actions done automatically by the strategy (smart-contract) with
+ an investment of $1000
-
+ >
+
{strat.name}
{strat.liveStatus != StrategyLiveStatus.ACTIVE && (
diff --git a/src/store/strategies.atoms.ts b/src/store/strategies.atoms.ts
index 336390a..46dd91c 100644
--- a/src/store/strategies.atoms.ts
+++ b/src/store/strategies.atoms.ts
@@ -97,7 +97,9 @@ export const strategiesAtom = atom((get) => {
const strategies = getStrategies();
const allPools = get(allPoolsAtomUnSorted);
const filteredPools = allPools.filter(
- (p) => p.protocol.name === 'zkLend' || p.protocol.name === 'Nostra Money Markets',
+ (p) =>
+ p.protocol.name === 'zkLend' ||
+ p.protocol.name === 'Nostra Money Markets',
);
for (const s of strategies) {