changed sequence of contact form buttons
This commit is contained in:
parent
2027bd3d17
commit
5fb7e89cb2
@ -472,10 +472,7 @@ const ManageContact = ({ contactId, closeModal }) => {
|
|||||||
|
|
||||||
{/* Actions */}
|
{/* Actions */}
|
||||||
<div className="d-flex justify-content-end gap-3 py-2">
|
<div className="d-flex justify-content-end gap-3 py-2">
|
||||||
<button className="btn btn-sm btn-primary" type="submit" disabled={isPending}>
|
<button
|
||||||
{isPending ? "Please Wait..." : "Submit"}
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
className="btn btn-sm btn-secondary"
|
className="btn btn-sm btn-secondary"
|
||||||
type="button"
|
type="button"
|
||||||
onClick={handleClosed}
|
onClick={handleClosed}
|
||||||
@ -483,6 +480,10 @@ const ManageContact = ({ contactId, closeModal }) => {
|
|||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
|
<button className="btn btn-sm btn-primary" type="submit" disabled={isPending}>
|
||||||
|
{isPending ? "Please Wait..." : "Submit"}
|
||||||
|
</button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</FormProvider>
|
</FormProvider>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user