Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BlakeKaufman committed Oct 4, 2024
1 parent c518c32 commit 0d4f183
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@ function InnerContent({isEditingMyProfile, selectedAddedContact}) {
const bioRef = useRef(null);
const myContact = globalContactsInformation.myProfile;

const myContactName = myContact.name;
const myContactBio = myContact.bio;
const myContactUniqueName = myContact.uniqueName;
const myContactName = myContact?.name;
const myContactBio = myContact?.bio;
const myContactUniqueName = myContact?.uniqueName;

const selectedAddedContactName = selectedAddedContact.name;
const selectedAddedContactBio = selectedAddedContact.bio;
const selectedAddedContactUniqueName = selectedAddedContact.uniqueName;
const selectedAddedContactName = selectedAddedContact?.name;
const selectedAddedContactBio = selectedAddedContact?.bio;
const selectedAddedContactUniqueName = selectedAddedContact?.uniqueName;

const [inputs, setInputs] = useState({
name: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,15 +181,6 @@ export default function SendOnChainBitcoin() {
content={'You currently do not have any on-chain funds'}
/>
)}
<CustomButton
buttonStyles={{
width: 'auto',
marginTop: 'auto',
...CENTER,
}}
actionFunction={() => {}}
textContent={'Past transactions'}
/>
</View>
) : isSendingPayment.sendingBTCpayment ? (
<View
Expand Down

0 comments on commit 0d4f183

Please sign in to comment.