Skip to content

Commit aeda091

Browse files
committed
[dashboard] Implement Sorry page
1 parent a73116b commit aeda091

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

components/dashboard/src/App.tsx

+6
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,12 @@ function App() {
115115
<Route path={["/admin"]} exact>
116116
<Redirect to="/admin/users"/>
117117
</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>
118124
<Route path="*" /* status={404} */>
119125
<div className="mt-48 text-center">
120126
<h1 className="text-gray-500 text-3xl">404</h1>

0 commit comments

Comments
 (0)