fixed silent panics

This commit is contained in:
bronkuu 2026-06-15 15:05:52 +02:00
parent 762c2a2e36
commit 2940f00142
4 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ package templates
import "strconv"
templ Confirmation(title string, id int) {
@Layout(title, nil, ConfirmationBody(id))
@Layout(title, templ.NopComponent, ConfirmationBody(id))
}
templ ConfirmationBody(id int) {