🚨 Fix compilation

This commit is contained in:
ajnart
2023-05-16 15:00:35 +09:00
parent a8ea56543b
commit 109e53df5d
2 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ import { useTranslation } from 'next-i18next';
import { useRouter } from 'next/router';
import { useState } from 'react';
import { notifications } from '@mantine/notifications';
import { IconCheck } from '@tabler/icons';
import { IconCheck } from '@tabler/icons-react';
import { useConfigContext } from '../../config/provider';
export default function ConfigChanger() {
@@ -44,7 +44,7 @@ export default function ConfigChanger() {
withCloseButton: false,
title: t('configSelect.loadingNew'),
message: t('configSelect.pleaseWait'),
icon: <IconCheck size="1rem" />,
icon: <IconCheck size={25} />,
autoClose: 2000,
});
}, 3000);