You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// without this early return it crashes on new install with:
40
+
// #4370 SMELL without this early return the wallet crashes on new install with:
42
41
// Wallet is neither of type `ledger` nor `software`
42
+
// FIXME - this shouldn't be rendered until necessary
43
43
if(!isShowing)returnnull;
44
-
// FIXME - how is this even getting loaded at all on install?!?!?!
45
44
46
45
return(
47
46
<Modal
48
-
title={<styled.h1textStyle="heading.05">Select account</styled.h1>}// FIXME this is a hack for Select Account that needs to be fixed
47
+
title={<styled.h1textStyle="heading.05">Select account</styled.h1>}// #4370 FIXME: Headers passing JSX as a hack for Select Account that needs to be fixed
<ReasonToAllowDiagnosticstext="Send data about page views, clicks, and errors"/>
88
-
<ReasonToAllowDiagnosticstext="This data is tied to randomly-generated IDs, and not personal data such as your Stacks address, keys, balances or IP address"/>
89
-
<ReasonToAllowDiagnosticstext="This data is used to generate and send crash reports, help fix errors, and analyze statistics"/>
<ReasonToAllowDiagnosticstext="Send data about page views, clicks, and errors"/>
51
+
<ReasonToAllowDiagnosticstext="This data is tied to randomly-generated IDs, and not personal data such as your Stacks address, keys, balances or IP address"/>
52
+
<ReasonToAllowDiagnosticstext="This data is used to generate and send crash reports, help fix errors, and analyze statistics"/>
Copy file name to clipboardExpand all lines: src/app/pages/send/send-crypto-asset-form/components/recipient-accounts-drawer/recipient-accounts-drawer.tsx
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,8 @@ import { Box } from 'leather-styles/jsx';
0 commit comments