This commit is contained in:
parent
2b99defa5a
commit
8b2546faaf
1 changed files with 2 additions and 2 deletions
|
|
@ -217,7 +217,7 @@ export default function ProfilePage() {
|
|||
{billingMessage ? <p style={{ color: 'green' }}>{billingMessage}</p> : null}
|
||||
{billingError ? <p style={{ color: 'red' }}>{billingError}</p> : null}
|
||||
<form onSubmit={onSaveBilling} style={{ display: 'grid', gap: 14, marginTop: 8 }}>
|
||||
<label style={{ display: 'flex', gap: 8, alignItems: 'center' }}>
|
||||
<label style={{ display: 'inline-flex', alignItems: 'center', columnGap: 6 }}>
|
||||
<input type="checkbox" checked={billingEnabled} onChange={(e) => setBillingEnabled(e.target.checked)} />
|
||||
<span>{t('billingEnableLabel')}</span>
|
||||
</label>
|
||||
|
|
@ -232,7 +232,7 @@ export default function ProfilePage() {
|
|||
{t('billingIbanLabel')}
|
||||
<input value={billingIban} onChange={(e) => setBillingIban(e.target.value)} placeholder="FI00 1234 5600 0007 85" />
|
||||
</label>
|
||||
<label style={{ display: 'flex', gap: 8, alignItems: 'center' }}>
|
||||
<label style={{ display: 'inline-flex', alignItems: 'center', columnGap: 6 }}>
|
||||
<input
|
||||
type="checkbox"
|
||||
checked={billingIncludeVatLine}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue