update withdrawal skeleton
This commit is contained in:
parent
02fe4d5d92
commit
8eee1c2a71
|
@ -31,13 +31,16 @@ export default function Withdrawl () {
|
||||||
export function WithdrawlSkeleton ({ status }) {
|
export function WithdrawlSkeleton ({ status }) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className='w-100'>
|
<div className='w-100 form-group'>
|
||||||
<InputSkeleton label='invoice' />
|
<InputSkeleton label='invoice' />
|
||||||
</div>
|
</div>
|
||||||
<div className='w-100'>
|
<div className='w-100 form-group'>
|
||||||
<InputSkeleton label='max fee' />
|
<InputSkeleton label='max fee' />
|
||||||
</div>
|
</div>
|
||||||
<InvoiceStatus status={status} />
|
<InvoiceStatus status={status} />
|
||||||
|
<div className='w-100 mt-3'>
|
||||||
|
<Bolt11Info />
|
||||||
|
</div>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -108,9 +111,11 @@ function LoadWithdrawl () {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<InvoiceStatus variant={variant} status={status} />
|
<InvoiceStatus variant={variant} status={status} />
|
||||||
<Bolt11Info bolt11={data.withdrawl.bolt11}>
|
<div className='w-100 mt-3'>
|
||||||
<PrivacyOption wd={data.withdrawl} />
|
<Bolt11Info bolt11={data.withdrawl.bolt11}>
|
||||||
</Bolt11Info>
|
<PrivacyOption wd={data.withdrawl} />
|
||||||
|
</Bolt11Info>
|
||||||
|
</div>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue