Fixed a few small typos

This commit is contained in:
2025-06-10 11:30:00 -04:00
parent 12b7743660
commit e42f453161
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ class ComponentController extends Controller {
$component = Component::where('id', $args['component_id'])->first();
$view = Twig::fromRequest($request);
return $view->render($response, 'components/view.twig', [
return $view->render($response, 'component/view.twig', [
'component' => $component,
]);
}