Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Nonzero chance i borked something
  • Loading branch information
regalijan committed Oct 20, 2023
1 parent 62592e6 commit 0fd8195
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion app/routes/mod-queue.tsx
Expand Up @@ -3,6 +3,7 @@ import {
Button,
Container,
Flex,
Heading,
Popover,
PopoverArrow,
PopoverBody,
Expand All @@ -11,6 +12,7 @@ import {
PopoverHeader,
PopoverTrigger,
Select,
Spacer,
useBreakpointValue,
useDisclosure,
useToast,
Expand Down Expand Up @@ -284,7 +286,25 @@ export default function () {
);
}}
>
{entryTypes}
{entryTypes.length ? (
entryTypes
) : (
<Container
left="50%"
maxW="container.md"
pos="absolute"
mt="64px"
transform="translate(-50%)"
>
<Flex>
<Spacer />
<img alt="Thonkery" src="/files/Thonkery.png" />
<Spacer />
</Flex>
<br />
<Heading textAlign="center">Nothing here</Heading>
</Container>
)}
</Select>
);

Expand Down

0 comments on commit 0fd8195

Please sign in to comment.