From be14d007ce96cfc906551101eee918913537937a Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Fri, 19 Apr 2024 20:47:09 +0300 Subject: [PATCH] fix(currency-dropdown): remove one loading for currency --- src/components/General/CurrencyDropdown.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/General/CurrencyDropdown.tsx b/src/components/General/CurrencyDropdown.tsx index 18fe39ba..681288ac 100644 --- a/src/components/General/CurrencyDropdown.tsx +++ b/src/components/General/CurrencyDropdown.tsx @@ -86,7 +86,7 @@ const CurrencyDropdown = ({ depositAmount }: CurrencyDropdownProps) => { - {isCurrencyLoading ? LOADING : currency} + {isCurrencyLoading ? '' : currency}