diff --git a/packages/frontend/src/components/projects/project/deployments/AssignDomainDialog.tsx b/packages/frontend/src/components/projects/project/deployments/AssignDomainDialog.tsx index 4978c166..2aabb370 100644 --- a/packages/frontend/src/components/projects/project/deployments/AssignDomainDialog.tsx +++ b/packages/frontend/src/components/projects/project/deployments/AssignDomainDialog.tsx @@ -1,13 +1,8 @@ import { CopyBlock, atomOneLight } from 'react-code-blocks'; import { Link } from 'react-router-dom'; -import { - Button, - Dialog, - DialogHeader, - DialogBody, - DialogFooter, -} from '@snowballtools/material-tailwind-react-fork'; +import { Modal } from 'components/shared/Modal'; +import { Button } from 'components/shared/Button'; interface AssignDomainProps { open: boolean; @@ -16,36 +11,31 @@ interface AssignDomainProps { const AssignDomainDialog = ({ open, handleOpen }: AssignDomainProps) => { return ( - - Assign Domain - - In order to assign a domain to your production deployments, configure it - in the{' '} - {/* TODO: Fix selection of project settings tab on navigation to domains */} - - project settings{' '} - - (recommended). If you want to assign to this specific deployment, - however, you can do so using our command-line interface: - {/* https://github.com/rajinwonderland/react-code-blocks/issues/138 */} - - - - - - + + + Assign Domain + + In order to assign a domain to your production deployments, configure + it in the{' '} + {/* TODO: Fix selection of project settings tab on navigation to domains */} + + project settings{' '} + + (recommended). If you want to assign to this specific deployment, + however, you can do so using our command-line interface: + {/* https://github.com/rajinwonderland/react-code-blocks/issues/138 */} + + + + + + + ); };