We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a73116b commit aeda091Copy full SHA for aeda091
components/dashboard/src/App.tsx
@@ -115,6 +115,12 @@ function App() {
115
<Route path={["/admin"]} exact>
116
<Redirect to="/admin/users"/>
117
</Route>
118
+ <Route path="/sorry" exact>
119
+ <div className="mt-48 text-center">
120
+ <h1 className="text-gray-500 text-3xl">Oh, no! Something went wrong!</h1>
121
+ <p className="mt-4 text-lg text-gitpod-red">{decodeURIComponent(getURLHash())}</p>
122
+ </div>
123
+ </Route>
124
<Route path="*" /* status={404} */>
125
<div className="mt-48 text-center">
126
<h1 className="text-gray-500 text-3xl">404</h1>
0 commit comments