feat(ui): remove warnings

This commit is contained in:
nick-delirium 2023-02-17 13:03:34 +01:00 committed by Delirium
parent 0f1232f3a7
commit f3efa296df
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,5 @@
import React from 'react';
// @ts-ignore
import slide from 'App/svg/cheers.svg';
import { Icon, Button } from 'UI';
import Footer from './Footer'
@ -17,7 +18,7 @@ function Category({ name, healthOk }: { name: string; healthOk: boolean }) {
)
}
function HealthModal({ healthOk }: { healthOk: boolean }) {
function HealthModal() {
return (
<div

View file

@ -1,5 +1,5 @@
import React from 'react';
import { Icon, Tooltip } from 'UI';
import { Icon } from 'UI';
import cn from 'classnames';
import HealthModal from 'Components/Header/HealthStatus/HealthModal/HealthModal';