Skip to content

Commit

Permalink
Params don't need to be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
shilgapira committed Oct 26, 2024
1 parent 833151e commit f20da34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sdks/web-component/src/lib/descope-wc/DescopeWc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -619,8 +619,8 @@ class DescopeWc extends BaseDescopeWc {
executionId: string,
stepId: string,
action: string,
flowVersion?: number,
componentsVersion?: string,
flowVersion: number,
componentsVersion: string,
rescheduled: boolean = false,
) => {
const pollingDefaultDelay = 2000;
Expand Down

0 comments on commit f20da34

Please sign in to comment.