Fix: Correct typo in template render argument in RootController

This commit is contained in:
2026-06-11 18:27:47 +02:00
parent e8020ea334
commit dde45bd90b
+1 -1
View File
@@ -11,7 +11,7 @@ final class RootController extends AbstractController
#[Route('/', name: 'app_root')]
public function index(): Response
{
return $this->render('root/root.html.twig, [
return $this->render('root/root.html.twig', [
'controller_name' => 'RootController',
]);
}