diff --git a/return-404-page.patch b/return-404-page.patch deleted file mode 100644 index e512d622..00000000 --- a/return-404-page.patch +++ /dev/null @@ -1,37 +0,0 @@ -diff --git a/webui/src/App.tsx b/webui/src/App.tsx -index 3e8f71e..4fd0993 100644 ---- a/webui/src/App.tsx -+++ b/webui/src/App.tsx -@@ -11,7 +11,6 @@ export default function App() { - - - -- - - - -diff --git a/webui/src/pages/bug/BugQuery.tsx b/webui/src/pages/bug/BugQuery.tsx -index ade64e9..5d459c4 100644 ---- a/webui/src/pages/bug/BugQuery.tsx -+++ b/webui/src/pages/bug/BugQuery.tsx -@@ -1,8 +1,10 @@ - import React from 'react'; --import { Redirect, RouteComponentProps } from 'react-router-dom'; -+import { RouteComponentProps } from 'react-router-dom'; - - import CircularProgress from '@material-ui/core/CircularProgress'; - -+import NotFoundPage from '../notfound/NotFoundPage'; -+ - import Bug from './Bug'; - import { useGetBugQuery } from './BugQuery.generated'; - -@@ -15,7 +17,7 @@ const BugQuery: React.FC = ({ match }: Props) => { - variables: { id: match.params.id }, - }); - if (loading) return ; -- if (!data?.repository?.bug) return ; -+ if (!data?.repository?.bug) return ; - if (error) return

Error: {error}

; - return ; - };