Replace interface{} with any

This commit is contained in:
2025-02-24 21:42:39 +01:00
parent 96284c3dbd
commit d3ffcfbb53
11 changed files with 76 additions and 76 deletions

View File

@@ -308,7 +308,7 @@ func (h *Handler) AdminUpdateUser() http.HandlerFunc {
}
// Track what's being updated for logging
updates := make(map[string]interface{})
updates := make(map[string]any)
if req.Email != "" {
user.Email = req.Email