Skip to content

Commit 97c8388

Browse files
authored
1 parent f336a30 commit 97c8388

File tree

4 files changed

+57
-57
lines changed

4 files changed

+57
-57
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@
7474
"@sentry/toolbar": "1.0.0-beta.16",
7575
"@sentry/webpack-plugin": "^4.0.0",
7676
"@swc/plugin-emotion": "10.0.2",
77-
"@tanstack/query-async-storage-persister": "^5.72.1",
78-
"@tanstack/react-query": "^5.72.1",
79-
"@tanstack/react-query-devtools": "^5.72.1",
80-
"@tanstack/react-query-persist-client": "^5.72.1",
77+
"@tanstack/query-async-storage-persister": "5.83.1",
78+
"@tanstack/react-query": "5.85.0",
79+
"@tanstack/react-query-devtools": "5.85.0",
80+
"@tanstack/react-query-persist-client": "5.85.0",
8181
"@tanstack/react-virtual": "^3.13.6",
8282
"@types/color": "^3.0.3",
8383
"@types/diff": "5.2.1",
@@ -124,7 +124,7 @@
124124
"gettext-parser": "7.0.1",
125125
"gl-matrix": "^3.4.3",
126126
"html-webpack-plugin": "5.6.3",
127-
"idb-keyval": "^6.2.1",
127+
"idb-keyval": "6.2.2",
128128
"invariant": "^2.2.4",
129129
"jed": "^1.1.0",
130130
"jest-fetch-mock": "^3.0.3",
@@ -187,7 +187,7 @@
187187
"@sentry/jest-environment": "6.1.0",
188188
"@sentry/profiling-node": "9.40.0",
189189
"@styled/typescript-styled-plugin": "^1.0.1",
190-
"@tanstack/eslint-plugin-query": "^5.66.1",
190+
"@tanstack/eslint-plugin-query": "5.83.1",
191191
"@testing-library/dom": "10.4.0",
192192
"@testing-library/jest-dom": "6.6.3",
193193
"@testing-library/react": "16.2.0",

pnpm-lock.yaml

Lines changed: 49 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/app/utils/discover/genericDiscoverQuery.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ export function useGenericDiscoverQuery<T, P>(props: Props<T, P>) {
437437
});
438438

439439
return {
440+
// eslint-disable-next-line @tanstack/query/no-rest-destructuring
440441
...res,
441442
data: res.data?.[0] ?? undefined,
442443
error: parseError(res.error),

static/app/utils/replays/hooks/useExtractDiffMutations.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {
77
IncrementalSource,
88
isRRWebChangeFrame,
99
type RecordingFrame,
10-
type ReplayFrame,
1110
} from 'sentry/utils/replays/types';
1211

1312
type DiffMutation = Record<
@@ -251,7 +250,7 @@ export default function useExtractDiffMutations({
251250
leftOffsetMs,
252251
replay,
253252
rightOffsetMs,
254-
}: Props): UseQueryResult<Map<ReplayFrame, DiffMutation>> {
253+
}: Props): UseQueryResult<Map<RecordingFrame, DiffMutation>, Error> {
255254
const startTimestampMs = replay.getReplay().started_at.getTime();
256255
const rangeStartTimestampMs = startTimestampMs + leftOffsetMs;
257256
const rangeEndTimestampMs = startTimestampMs + rightOffsetMs;

0 commit comments

Comments
 (0)