prevent default on privacy invoice info click
This commit is contained in:
parent
297270f34d
commit
58eb840adb
|
@ -16,7 +16,13 @@ export default function Info ({ children }) {
|
||||||
{children}
|
{children}
|
||||||
</Modal.Body>
|
</Modal.Body>
|
||||||
</Modal>
|
</Modal>
|
||||||
<InfoIcon width={18} height={18} className='fill-theme-color pointer ml-1' onClick={() => setInfo(true)} />
|
<InfoIcon
|
||||||
|
width={18} height={18} className='fill-theme-color pointer ml-1'
|
||||||
|
onClick={(e) => {
|
||||||
|
e.preventDefault()
|
||||||
|
setInfo(true)
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,9 +118,9 @@ export default function Settings ({ data: { settings } }) {
|
||||||
<ul className='font-weight-bold'>
|
<ul className='font-weight-bold'>
|
||||||
<li>Use this if you don't want funding sources to be linkable to your SN identity.</li>
|
<li>Use this if you don't want funding sources to be linkable to your SN identity.</li>
|
||||||
<li>It makes your invoice descriptions blank.</li>
|
<li>It makes your invoice descriptions blank.</li>
|
||||||
<li>This only applies invoices you create
|
<li>This only applies to invoices you create
|
||||||
<ul>
|
<ul>
|
||||||
<li>lnurl-pay or lightning addresses still reference your nym</li>
|
<li>lnurl-pay and lightning addresses still reference your nym</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in New Issue