Remove all unused dependencies and items

This commit is contained in:
Aj - Thomas
2022-05-04 07:30:06 +02:00
parent 1ce8a06e21
commit 1667ea2754
15 changed files with 34 additions and 83 deletions

View File

@@ -1,15 +1,5 @@
import {
Group,
Indicator,
Popover,
Box,
Container,
Text,
Avatar,
ActionIcon,
Center,
} from '@mantine/core';
import { useEffect, useState } from 'react';
import { Indicator, Popover, Box, Center } from '@mantine/core';
import { useState } from 'react';
import { Calendar } from '@mantine/dates';
import dayjs from 'dayjs';
import MediaDisplay from './MediaDisplay';
@@ -100,8 +90,9 @@ function DayComponent(props: any) {
onClose={() => setOpened(false)}
opened={opened}
target={day}
children={<MediaDisplay media={medias[match]} />}
/>
>
<MediaDisplay media={medias[match]} />
</Popover>
</Indicator>
</Center>
</Box>