Skip to content

Commit

Permalink
fix: little fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
juanky201271 committed Jan 24, 2025
1 parent 2e714ee commit 76d91e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ const Header: React.FunctionComponent<HeaderProps> = ({
marginHorizontal: 5,
}}>
{!noSyncingStatus && selectServer !== SelectServerEnum.offline && (
<>
<View style={{ minHeight: 25 }}>
{netInfo.isConnected && !!syncingStatus.lastBlockServer && syncingStatus.syncID >= 0 ? (
<>
{!syncingStatus.inProgress && syncingStatus.lastBlockServer === syncingStatus.lastBlockWallet && (
Expand Down Expand Up @@ -641,7 +641,7 @@ const Header: React.FunctionComponent<HeaderProps> = ({
)}
</View>
)}
</>
</View>
)}
{selectServer === SelectServerEnum.offline && (
<View
Expand Down
2 changes: 1 addition & 1 deletion components/Messages/components/ContactList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ const ContactList: React.FunctionComponent<ContactListProps> = ({

if (valueTransfers !== null) {
fetchZennyTips();
const c = fetchContacts;
const c = fetchContacts();
setContacts(c);
setTimeout(() => {
setLoading(false);
Expand Down

0 comments on commit 76d91e2

Please sign in to comment.