Skip to content

Commit 2f3167f

Browse files
committed
fix(integrations): unique ZoomInfo icon clip id, numeric employee range filters
- ZoomInfoIcon: derive clipPath id from useId() so multiple instances don't collide - ZoomInfo company search: send employeeRangeMin/Max as numbers, matching revenueMin/Max
1 parent 762af4b commit 2f3167f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/sim/tools/zoominfo/search_companies.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ export const zoominfoSearchCompaniesTool: ToolConfig<
157157
const revenueMax = toNumberOrUndefined(params.revenueMax)
158158
if (revenueMax !== undefined) attributes.revenueMax = revenueMax
159159
const employeeRangeMin = toNumberOrUndefined(params.employeeRangeMin)
160-
if (employeeRangeMin !== undefined) attributes.employeeRangeMin = String(employeeRangeMin)
160+
if (employeeRangeMin !== undefined) attributes.employeeRangeMin = employeeRangeMin
161161
const employeeRangeMax = toNumberOrUndefined(params.employeeRangeMax)
162-
if (employeeRangeMax !== undefined) attributes.employeeRangeMax = String(employeeRangeMax)
162+
if (employeeRangeMax !== undefined) attributes.employeeRangeMax = employeeRangeMax
163163
if (params.excludeDefunctCompanies !== undefined) {
164164
attributes.excludeDefunctCompanies = params.excludeDefunctCompanies
165165
}

0 commit comments

Comments
 (0)