Fix Sentry test button

This commit is contained in:
Mitchell McCaffrey 2020-10-27 09:34:42 +11:00
parent 0f5956b7a3
commit 3599cad2e2

View File

@ -37,7 +37,13 @@ function Home() {
alignItems: "center",
}}
>
<button onClick={methodDoesNotExist}>Break the world</button>;
<button
onClick={() => {
throw Error("AHHHHHH");
}}
>
Break the world
</button>
<Flex
sx={{
flexDirection: "column",