Skip to content

Commit

Permalink
fix: js apps filter in enum usecase search method (#1023)
Browse files Browse the repository at this point in the history
Co-authored-by: Himanshu Dixit <hudixt@gmail.com>
  • Loading branch information
utkarsh-dixit and himanshu-dixit authored Dec 18, 2024
1 parent 5bb3ea8 commit e065dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/sdk/models/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export class Actions {
try {
const { data: res } = await apiClient.actionsV2.advancedUseCaseSearch({
query: {
apps: data.apps.join(","),
apps: data.apps?.join(","),
limit: data.limit || undefined,
filterByAvailableApps: data.filterByAvailableApps,
},
Expand Down

0 comments on commit e065dff

Please sign in to comment.