diff --git a/frontend/src/components/dashboard/DeleteActionButton.tsx b/frontend/src/components/dashboard/DeleteActionButton.tsx index 91819b43c..48b81eaee 100644 --- a/frontend/src/components/dashboard/DeleteActionButton.tsx +++ b/frontend/src/components/dashboard/DeleteActionButton.tsx @@ -1,10 +1,9 @@ -import React, { useState } from 'react' +import React from 'react' import { useTranslation } from 'react-i18next'; import { faXmark } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import Button from '../basic/buttons/Button'; -import { DeleteEnvVar } from '../basic/dialog/DeleteEnvVar'; type Props = { onSubmit: () => void; @@ -13,7 +12,6 @@ type Props = { export const DeleteActionButton = ({ onSubmit, isPlain }: Props) => { const { t } = useTranslation(); - const [open, setOpen] = useState(false) return (