Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const DeleteServiceAccountTokenDialog = ({
<div className="space-y-4">
<div className="text-neutral-500 py-4">Are you sure you want to delete this token?</div>
<div className="flex justify-end">
<Button variant="danger" onClick={handleDelete} isLoading={loading} className="flex items-center gap-1">
<Button variant="danger" onClick={handleDelete} isLoading={loading}>
<FaTrashAlt /> Delete
</Button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const DeleteServiceAccountDialog = ({ account }: { account: ServiceAccoun
associated with this account.
</div>
<div className="flex justify-end">
<Button variant="danger" onClick={handleDelete} className="flex items-center gap-1">
<Button variant="danger" onClick={handleDelete}>
<FaTrashAlt /> Delete
</Button>
</div>
Expand Down