Skip to content

Commit

Permalink
fix(api-form-builder-so-ddb-es): types for decoded cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
brunozoric committed Oct 13, 2021
1 parent 292dc0a commit 658281c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -398,7 +398,7 @@ export const createFormStorageOperations = (params: Params): FormBuilderFormStor
sort,
limit: limit + 1,
where,
after: decodeCursor(after)
after: decodeCursor(after) as any
});

const esConfig = configurations.es({
Expand Down
Expand Up @@ -262,7 +262,7 @@ export const createSubmissionStorageOperations = (
sort,
limit: limit + 1,
where,
after: decodeCursor(after)
after: decodeCursor(after) as any
});

const esConfig = configurations.es({
Expand Down

0 comments on commit 658281c

Please sign in to comment.