Skip to content
This repository has been archived by the owner on Jan 24, 2025. It is now read-only.

Commit

Permalink
fix: bump redis to 1.31.4
Browse files Browse the repository at this point in the history
  • Loading branch information
CahidArda committed Jun 12, 2024
1 parent 58df4bc commit 8dd0158
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/react-databrowser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^5.32.0",
"@upstash/redis": "^1.31.3"
"@upstash/redis": "^1.31.4"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ class PaginatedRedis {
break;
}

// @ts-expect-error - This will be fixed in the sdk, this is temporary
const [nextCursor, newKeys]: [string, string[]] = await this.redis.scan(cursor, {
const [nextCursor, newKeys] = await this.redis.scan(cursor, {
count: fetchCount,
match: this.searchTerm,
type: type,
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8dd0158

Please sign in to comment.