🐛 Fixing a bug related to imports

This commit is contained in:
Thomas "ajnart" Camlong
2022-06-01 11:08:27 +02:00
committed by ajnart
parent 64b1679b03
commit de3792fb6b

View File

@@ -8,7 +8,7 @@ import {
Title, Title,
useMantineTheme, useMantineTheme,
} from '@mantine/core'; } from '@mantine/core';
import { Cpu } from 'tabler-icons-react'; import { IconCpu } from '@tabler/icons';
import { useEffect, useState } from 'react'; import { useEffect, useState } from 'react';
import axios from 'axios'; import axios from 'axios';
import si from 'systeminformation'; import si from 'systeminformation';
@@ -19,7 +19,7 @@ import { useListState } from '@mantine/hooks';
export const SystemModule: IModule = { export const SystemModule: IModule = {
title: 'System info', title: 'System info',
description: 'Show the current CPU usage and memory usage', description: 'Show the current CPU usage and memory usage',
icon: Cpu, icon: IconCpu,
component: SystemInfo, component: SystemInfo,
}; };