refactor(ui): move modal buttons to shared UI components

Move modal-buttons.tsx from api-keys feature to shared UI custom
components as custom-modal-buttons.tsx for reusability across the app.
Update import in revoke-api-key-modal.
This commit is contained in:
Alan Buscaglia
2025-10-14 11:26:29 +02:00
parent 71aec6aede
commit 8e40c2ceb1
2 changed files with 1 additions and 1 deletions
@@ -10,9 +10,9 @@ import {
AlertTitle,
} from "@/components/ui/alert/Alert";
import { CustomAlertModal } from "@/components/ui/custom/custom-alert-modal";
import { ModalButtons } from "@/components/ui/custom/custom-modal-buttons";
import { FALLBACK_VALUES } from "./api-keys/constants";
import { ModalButtons } from "./api-keys/modal-buttons";
import { EnrichedApiKey } from "./api-keys/types";
import { useModalForm } from "./api-keys/use-modal-form";