From c4c714dab7f96aff01504ab30f99c645896ec999 Mon Sep 17 00:00:00 2001 From: bkin-bot Date: Mon, 25 May 2026 20:40:03 -0700 Subject: [PATCH] Fix close position size formatting Use the same formatted max position size when populating the close amount input. --- src/components/modals/ClosePosition.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modals/ClosePosition.svelte b/src/components/modals/ClosePosition.svelte index 4fd8e04..2962b6b 100644 --- a/src/components/modals/ClosePosition.svelte +++ b/src/components/modals/ClosePosition.svelte @@ -96,7 +96,7 @@
- amount = data.size} isClickable={true} /> + amount = formatForDisplay(data.size)} isClickable={true} />