Removed a div that was no longer needed

This commit is contained in:
David Sykes
2020-07-30 11:30:01 +01:00
parent fa708d6572
commit ea57820c62
@@ -19,12 +19,10 @@ import { ErrorPage } from '@backstage/core';
export const TechDocsNotFound = () => {
return (
<div>
<ErrorPage
status="404"
statusMessage="Documentation not found"
docPath={window.location.pathname}
/>
</div>
<ErrorPage
status="404"
statusMessage="Documentation not found"
docPath={window.location.pathname}
/>
);
};