Remove fiber ctx from render

This commit is contained in:
Eden Kirin
2024-02-06 20:36:27 +01:00
parent 320fb3c4d3
commit a47e8a39b6
5 changed files with 10 additions and 12 deletions

View File

@ -10,6 +10,6 @@ func ProtectedPage(request *requests.Request) error {
Title: "Protected page",
ActivePage: "protected-page",
}
Render(request.Ctx, templates.ProtectedPage(request, pc))
Render(request, templates.ProtectedPage(request, pc))
return nil
}