From 6ee6ad2b8646c66ccd1211c1c55152cb4cbbcd43 Mon Sep 17 00:00:00 2001 From: David Cook Date: Fri, 11 Aug 2023 14:14:32 +1000 Subject: [PATCH] [fixup] Remove unnecessary template name This was left over after trying different things to get this working. --- app/controllers/errors_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/errors_controller.rb b/app/controllers/errors_controller.rb index fc17827785..17a0f08fa5 100644 --- a/app/controllers/errors_controller.rb +++ b/app/controllers/errors_controller.rb @@ -9,7 +9,7 @@ class ErrorsController < ApplicationController event.add_metadata(:request, request.env) end - render "not_found", status: :not_found, formats: :html + render status: :not_found, formats: :html end def internal_server_error