diff options
author | Nathan Wang | 2020-07-20 16:20:35 -0700 |
---|---|---|
committer | Nathan Wang | 2020-07-20 16:37:33 -0700 |
commit | c23d263d385705613b642b1466419cc266456a40 (patch) | |
tree | c5980d7035fb4c73b4301628ac1bf9cc2c5eb44f | |
parent | 01256fadcca9b4b6b86b3681b6a268508655fde2 (diff) |
try again to break sentry
-rw-r--r-- | src/pages/license.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/pages/license.tsx b/src/pages/license.tsx index 6a6d361..a7d5ee9 100644 --- a/src/pages/license.tsx +++ b/src/pages/license.tsx @@ -9,7 +9,11 @@ export default function LicensePage(props: PageProps) { <SEO title="License and Usage" /> <div className="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8"> - <button onClick={methodThatDoesNoteExist}> + <button + onClick={() => { + throw 'Hello Sentry??'; + }} + > Break the app (and test sentry!) </button> <Link to="/" className="block mt-4 underline text-blue-600"> |