From f2f5358589fb497d0c422f117c8529b69ac79337 Mon Sep 17 00:00:00 2001 From: flashwave Date: Fri, 13 Oct 2023 23:58:17 +0000 Subject: [PATCH] subtract 100 --- src/RoutingContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RoutingContext.php b/src/RoutingContext.php index 4c37e6d..5054060 100644 --- a/src/RoutingContext.php +++ b/src/RoutingContext.php @@ -24,7 +24,7 @@ class RoutingContext { public function registerDefaultErrorPages(): void { $this->router->get('/error-401.html', fn() => $this->templating->render('errors/401')); $this->router->get('/error-403.html', fn() => $this->templating->render('errors/403')); - $this->router->get('/error-404.html', fn() => $this->templating->render('errors/504')); + $this->router->get('/error-404.html', fn() => $this->templating->render('errors/404')); $this->router->get('/error-500.html', fn() => $this->templating->render('errors/500')); $this->router->get('/error-503.html', fn() => $this->templating->render('errors/503'));