import { HubspotForm } from '@@/HubspotForm'; import { Modal } from '@@/modals/Modal'; export function GetLicenseDialog({ onDismiss, goToUploadLicense, }: { onDismiss: () => void; goToUploadLicense: (isSubmitted: boolean) => void; }) { // form is loaded from hubspot, so it won't have the same styling as the rest of the app // since it won't support darkmode, we enforce a white background and black text for the components we use // (Modal, CloseButton, loading text) return (
goToUploadLicense(true)} loading={
Loading...
} />
); }