From 206127976d886dd0e4ca0dbdde338845066a7e76 Mon Sep 17 00:00:00 2001 From: Manohar Date: Fri, 15 May 2026 04:07:55 +0000 Subject: [PATCH] fix: remove netAmount shorthand (field no longer declared) --- src/angel/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/angel/client.ts b/src/angel/client.ts index a77021c..3da11ef 100644 --- a/src/angel/client.ts +++ b/src/angel/client.ts @@ -77,7 +77,7 @@ function normalisePosition(p: AngelPosition): Position | null { unrealisedPnl: unrealised, realisedPnl: realised, totalPnl: unrealised + realised, - netAmount, + netAmount: 0, source: 'position', }; }