import { ExternalLink } from 'lucide-react'; import { Button } from '@@/buttons'; import { Modal } from '@@/modals/Modal'; import { ModalType } from '@@/modals/Modal/types'; export function NonAdminUpgradeDialog({ onDismiss, }: { onDismiss: () => void; }) { return ( You need to be logged in as an admin to upgrade Portainer to Business Edition.
); }