Skip to content

Commit

Permalink
Remove 'some errors disappear' error
Browse files Browse the repository at this point in the history
I don't like it, because it doesn't tell you *what* errors
will be fixed by refreshing the page
  • Loading branch information
yuvipanda committed Dec 9, 2024
1 parent 55d4318 commit 3ee5069
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
4 changes: 1 addition & 3 deletions binderhub/static/js/components/ErrorPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ export function ErrorPage({ title, errorMessage }) {
<div className="container text-center jumbotron">
<h1>{title}</h1>

<p className="lead">
{errorMessage} Note: Some errors disappear by refreshing the page.
</p>
<p className="lead">{errorMessage}</p>
</div>
<div className="container">
<div className="row text-center">
Expand Down
4 changes: 0 additions & 4 deletions binderhub/static/js/pages/NotFoundPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ export function NotFoundPage() {
<>
<div className="container text-center jumbotron">
<h1>404: Not Found</h1>

<p className="lead">
Note: Some errors disappear by refreshing the page.
</p>
</div>
<div className="container">
<div className="row text-center">
Expand Down

0 comments on commit 3ee5069

Please sign in to comment.