Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Ok it didn't break anything but it didn't exactly work
  • Loading branch information
regalijan committed Oct 20, 2023
1 parent 0fd8195 commit e48af3a
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions app/routes/mod-queue.tsx
Expand Up @@ -286,25 +286,7 @@ export default function () {
);
}}
>
{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>
)}
{entryTypes}
</Select>
);

Expand All @@ -328,7 +310,25 @@ export default function () {
<Box display={isDesktop ? "none" : undefined} mb="16px" w="90%">
{ItemDisplay}
</Box>
{entries}
{entries.length ? (
entries
) : (
<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>
)}
</VStack>
<Box display={isDesktop ? undefined : "none"} ml="16px" w="248px">
{ItemDisplay}
Expand Down

0 comments on commit e48af3a

Please sign in to comment.