From 3595ff0d61bc34c0c501c5b748badca7520657da Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Thu, 19 Feb 2026 20:08:57 +0300 Subject: [PATCH] include the active symbol in the displayed limit --- handlers/application/poolswap.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/handlers/application/poolswap.go b/handlers/application/poolswap.go index 1c6f923..3b9b1a3 100644 --- a/handlers/application/poolswap.go +++ b/handlers/application/poolswap.go @@ -236,8 +236,8 @@ func (h *MenuHandlers) SwapMaxLimit(ctx context.Context, sym string, input []byt } res.Content = fmt.Sprintf( - "Maximum: %s\n\nEnter amount of %s to swap for %s:", - maxStr, swapData.ActiveSwapFromSym, swapData.ActiveSwapToSym, + "Maximum: %s %s\n\nEnter amount of %s to swap for %s:", + maxStr, swapData.ActiveSwapFromSym, swapData.ActiveSwapFromSym, swapData.ActiveSwapToSym, ) return res, nil