fix(client): avoid rendering inside a p tag
This commit is contained in:
committed by
mrugesh
parent
174c6f5c68
commit
2a449d03a3
@ -39,7 +39,7 @@ function DonateCompletion({ processing, reset, success, error = null }) {
|
|||||||
)}
|
)}
|
||||||
{error && <p>{error}</p>}
|
{error && <p>{error}</p>}
|
||||||
</div>
|
</div>
|
||||||
<p className='donation-completion-buttons'>
|
<div className='donation-completion-buttons'>
|
||||||
{error && (
|
{error && (
|
||||||
<div>
|
<div>
|
||||||
<Button bsStyle='primary' onClick={reset}>
|
<Button bsStyle='primary' onClick={reset}>
|
||||||
@ -47,7 +47,7 @@ function DonateCompletion({ processing, reset, success, error = null }) {
|
|||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</p>
|
</div>
|
||||||
</Alert>
|
</Alert>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user