feat: switch to new dialog gutter

This commit is contained in:
Aarnav Tale 2025-01-20 08:14:42 +00:00
parent af248df648
commit c24cd34925
No known key found for this signature in database
15 changed files with 29 additions and 29 deletions

View file

@ -32,7 +32,7 @@ export default function Delete({ machine, state }: DeleteProps) {
>
<input type="hidden" name="_method" value="delete" />
<input type="hidden" name="id" value={machine.id} />
<div className="mt-6 flex justify-end gap-2 mt-6">
<Dialog.Gutter>
<Dialog.Action variant="cancel" onPress={close}>
Cancel
</Dialog.Action>
@ -48,7 +48,7 @@ export default function Delete({ machine, state }: DeleteProps) {
>
Remove
</Dialog.Action>
</div>
</Dialog.Gutter>
</Form>
</>
)}