fix(currency-dropdown): remove one loading for currency

This commit is contained in:
RadoslavDimchev 2024-04-19 20:47:09 +03:00 committed by Emil Ivanichkov
parent 0c8499811f
commit be14d007ce
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ const CurrencyDropdown = ({ depositAmount }: CurrencyDropdownProps) => {
<YStack space={'$2'}> <YStack space={'$2'}>
<XStack style={{ justifyContent: 'space-between' }}> <XStack style={{ justifyContent: 'space-between' }}>
<Text size={15} weight={'semibold'}> <Text size={15} weight={'semibold'}>
{isCurrencyLoading ? LOADING : currency} {isCurrencyLoading ? '' : currency}
</Text> </Text>
<DropdownMenu onOpenChange={changeIsOpenHandler}> <DropdownMenu onOpenChange={changeIsOpenHandler}>
<Button <Button