mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-03 12:06:21 +01:00
Bad git!
This commit is contained in:
parent
e37e934f3f
commit
c526833259
1 changed files with 1 additions and 12 deletions
|
@ -209,18 +209,7 @@ const WalletTransactions = () => {
|
|||
};
|
||||
|
||||
const renderListHeaderComponent = () => {
|
||||
const style = {};
|
||||
if (!isDesktop) {
|
||||
// we need this button for testing
|
||||
style.opacity = 0;
|
||||
style.height = 1;
|
||||
style.width = 1;
|
||||
} else if (isLoading) {
|
||||
style.opacity = 0.5;
|
||||
} else {
|
||||
style.opacity = 1.0;
|
||||
}
|
||||
|
||||
const style = { opacity: isLoading ? 0.5 : 1.0 };
|
||||
return (
|
||||
<View style={styles.flex}>
|
||||
<View style={styles.listHeader}>
|
||||
|
|
Loading…
Add table
Reference in a new issue