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