remove prerender test from routes

This commit is contained in:
David Price
2021-03-10 23:39:44 -08:00
committed by GitHub
parent 7e6337005b
commit 0580a5bf83

View File

@@ -22,7 +22,7 @@ const Routes = () => {
<Route path="/admin/posts/{id:Int}" page={PostPage} name="post" />
<Route path="/admin/posts" page={PostsPage} name="posts" />
</Private>
<Route notfound page={NotFoundPage} prerender />
<Route notfound page={NotFoundPage} />
</Router>
)
}