Skip to content

Commit

Permalink
end playtest
Browse files Browse the repository at this point in the history
  • Loading branch information
notV4l committed Aug 6, 2024
1 parent bf79f02 commit 3cf27db
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions web/src/components/layout/ConnectionError.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@ const ConnectionError = ({ errors }: { errors: (string | undefined)[] }) => {
<VStack fontSize="16px">
<VStack fontSize="16px">
<Image src="/images/events/smoking_gun.gif" alt="rip" w="200px" h="200px" mx="auto" />
<Text>Unable to connect</Text>
<Text>Playtest has ended!</Text>
{/* <Text>Unable to connect</Text>
{errors.map((e,key) => {
if (e) {
return <Text key={key}>{e}</Text>;
}
})}
})} */}
</VStack>

<VStack fontSize="16px" gap={6}>
{/* <VStack fontSize="16px" gap={6}>
<Text>Try to refresh</Text>
<Button
variant="pixelated"
Expand All @@ -36,7 +37,8 @@ const ConnectionError = ({ errors }: { errors: (string | undefined)[] }) => {
router.reload();
}}
/>
</VStack>
</VStack> */}

</VStack>
</VStack>
</Flex>
Expand Down

0 comments on commit 3cf27db

Please sign in to comment.