Skip to content

Commit

Permalink
🚧 Api error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
XionWCFM committed Aug 11, 2024
1 parent f122330 commit b867406
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,12 @@ declare const useFunnel: <Steps extends NonEmptyArray<string>>(
},
{
createStep: (
step: Steps[number],
searchParams?: URLSearchParams,
deleteQueryParams?: string[] | string
step: string,
options: {
searchParams?: URLSearchParams;
deleteQueryParams?: string[] | string;
qsOptions?: QueryString.IStringifyBaseOptions;
}
) => string;
funnelId: string;
step: Steps[number] | undefined;
Expand Down

0 comments on commit b867406

Please sign in to comment.