💃🏻 Styling credits and Menu enabler

This commit is contained in:
ajnart
2022-08-02 05:17:19 +02:00
parent 456f0ff2ee
commit 762690493a
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import { Group, ActionIcon, Anchor, Text, Stack } from '@mantine/core';
import { Group, ActionIcon, Anchor, Text } from '@mantine/core';
import { IconBrandDiscord, IconBrandGithub } from '@tabler/icons';
import { CURRENT_VERSION } from '../../../data/constants';

View File

@@ -1,4 +1,4 @@
import { Checkbox, Group, SimpleGrid, Stack, Title } from '@mantine/core';
import { Checkbox, SimpleGrid, Stack, Title } from '@mantine/core';
import * as Modules from '../../modules';
import { useConfig } from '../../tools/state';
@@ -12,7 +12,7 @@ export default function ModuleEnabler(props: any) {
{modules.map((module) => (
<Checkbox
key={module.title}
size="sm"
size="lg"
checked={config.modules?.[module.title]?.enabled ?? false}
label={`${module.title}`}
onChange={(e) => {