chore: remove unused tenant variable

This commit is contained in:
Erik Silva
2025-12-09 03:06:06 -03:00
parent 1ea381224d
commit 6ec29c7eef

View File

@@ -54,7 +54,7 @@ func (h *TenantHandler) CheckExists(w http.ResponseWriter, r *http.Request) {
return
}
tenant, err := h.tenantService.GetBySubdomain(subdomain)
_, err := h.tenantService.GetBySubdomain(subdomain)
if err != nil {
if err == service.ErrTenantNotFound {
http.NotFound(w, r)