Skip to content

Commit

Permalink
Fix glitch on app load, show own note in contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
minibits-cash committed Jan 17, 2024
1 parent e6ee1e6 commit 7726406
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minibits_wallet",
"version": "0.1.5-beta.24",
"version": "0.1.5-beta.25",
"private": true,
"scripts": {
"android:clean": "cd android && ./gradlew clean",
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function App(props: AppProps) {
}

return (
<SafeAreaProvider initialMetrics={initialWindowMetrics}>
<SafeAreaProvider>
<ErrorBoundary catchErrors={Config.catchErrors}>
<AppNavigator />
<FlashMessage position='bottom' />
Expand Down
2 changes: 1 addition & 1 deletion src/screens/Contacts/ContactListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const ContactListItem = observer(function (props: ContactListProps) {
key={contact.pubkey}
text={contact.name as string}
textStyle={$mintText}
subText={contact.nip05}
subText={contact.noteToSelf || contact.nip05}
LeftComponent={<Image style={[
$iconContainer, {
width: 40,
Expand Down

0 comments on commit 7726406

Please sign in to comment.