Refactor security logs configuration components and types

This commit is contained in:
ukrocks007 2024-04-09 16:45:38 +05:30
parent 5882bb8309
commit 4bc8d3d7b9
1 changed files with 0 additions and 3 deletions

View File

@ -1,11 +1,8 @@
import { useTranslation } from 'next-i18next';
import { successToast } from '@components/Toaster';
import LicenseRequired from '@components/LicenseRequired';
import { SecurityLogsConfigCreate } from 'internal-ui/src/security-logs-config';
const NewConfiguration = ({ hasValidLicense }: { hasValidLicense: boolean }) => {
const { t } = useTranslation('common');
if (!hasValidLicense) {
return <LicenseRequired />;
}