diff --git a/internal/handlers/auth.go b/internal/handlers/auth.go index 3680eb9..5819bdf 100644 --- a/internal/handlers/auth.go +++ b/internal/handlers/auth.go @@ -787,6 +787,7 @@ func (h *AuthHandler) UpdateUserMaxDevices(c echo.Context) error { return c.JSON(http.StatusInternalServerError, map[string]string{"error": err.Error()}) } + _ = user // Suppress unused variable warning when sqlc returns user return c.JSON(http.StatusOK, map[string]string{"message": "max devices updated"}) }