fix: unused param and missing return

This commit is contained in:
Florian Sylvain
2025-11-17 19:51:38 +01:00
parent 83a1dec8ae
commit f47f145b6c
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"os"
)
func GetPageIntegration(w http.ResponseWriter, r *http.Request) {
func GetPageIntegration(w http.ResponseWriter, _ *http.Request) {
navbarTmpl, _ := api.Container.GetPageUseCase.GetPage("componentNavbar", nil)
templ, _ := api.Container.GetPageUseCase.GetPage("integration", map[string]any{
"Navbar": template.HTML(navbarTmpl),