Skip to content

Commit

Permalink
Merge pull request #1507 from cmgustavo/bug/no-show-skeleton-01
Browse files Browse the repository at this point in the history
Fix: no show skeleton when click on Deposit/Withdraw button
  • Loading branch information
JohnathanWhite authored Jan 6, 2025
2 parents 72069c4 + bb55d3e commit 4bb3282
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/navigation/coinbase/screens/CoinbaseAccount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ import GlobalSelect, {
ToWalletSelectorCustomCurrency,
} from '../../wallet/screens/GlobalSelect';
import SheetModal from '../../../components/modal/base/sheet/SheetModal';
import {useSafeAreaInsets} from 'react-native-safe-area-context';

const AccountContainer = styled.SafeAreaView`
flex: 1;
Expand Down Expand Up @@ -312,7 +311,7 @@ const CoinbaseAccount = ({
<BorderBottom />
</View>
)}
{isLoading || initialLoad ? (
{isLoading && initialLoad ? (
<SkeletonContainer>
<WalletTransactionSkeletonRow />
</SkeletonContainer>
Expand Down

0 comments on commit 4bb3282

Please sign in to comment.