Fix web view height

This commit is contained in:
Gregory Schier
2023-04-04 07:51:41 -07:00
parent c5d6e7d74a
commit b48ed0399e
5 changed files with 29 additions and 12 deletions

View File

@@ -15,9 +15,14 @@ export default function RouteError() {
<pre className="text-sm select-auto cursor-text bg-gray-100 p-3 rounded whitespace-normal">
{message}
</pre>
<Button to="/" color="primary">
Go Home
</Button>
<VStack space={2}>
<Button to="/" color="primary">
Go Home
</Button>
<Button color="secondary" onClick={() => window.location.reload()}>
Refresh
</Button>
</VStack>
</VStack>
</div>
);