File tree Expand file tree Collapse file tree 1 file changed +19
-5
lines changed
Expand file tree Collapse file tree 1 file changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,25 @@ init()
1717createRoot ( document . getElementById ( "root" ) ! ) . render (
1818 < StrictMode >
1919 < Sentry . ErrorBoundary
20- fallback = {
21- < div className = "flex items-center justify-center h-screen text-5xl text-orange-700" >
22- Error encounted. Please try refreshing the page.
23- </ div >
24- }
20+ fallback = { ( ) => {
21+ return (
22+ < div className = "flex items-center justify-center h-screen text-5xl text-orange-700 " >
23+ < div className = "flex flex-col" >
24+ < div > An internal error with Squawk has occured.</ div >
25+ < div >
26+ Please open an issue at{ " " }
27+ < a
28+ href = "https://github.com/sbdchd/squawk/issues/new"
29+ className = "underline"
30+ >
31+ github.com/sbdchd/squawk
32+ </ a >
33+ !
34+ </ div >
35+ </ div >
36+ </ div >
37+ )
38+ } }
2539 >
2640 < App />
2741 </ Sentry . ErrorBoundary >
You can’t perform that action at this time.
0 commit comments