From 7169d2cae3eee30444eb0ee0bf6b6de9d10c03fa Mon Sep 17 00:00:00 2001 From: kj Date: Sat, 7 Jun 2025 14:17:11 -0300 Subject: [PATCH] Fix: render is not using the defined extension. --- src/Libs/View.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Libs/View.php b/src/Libs/View.php index 23713f2..35948ac 100644 --- a/src/Libs/View.php +++ b/src/Libs/View.php @@ -57,7 +57,7 @@ class View extends Neuron { ): void { $instance = new View($params); - $instance->html($viewName, $viewPath); + $instance->html($viewName, $viewPath, $extension); } /**