Skip to content

Commit 0e5b391

Browse files
authored
fix(replay): Remove some fields from replay list request (#94226)
**Before** ![SCR-20250624-kxpo](https://github.com/user-attachments/assets/43b0368b-994b-4f95-acd8-9b5835ffd30a) **After** ![SCR-20250624-kxvv](https://github.com/user-attachments/assets/f280b044-fcef-40dd-b4c5-69ea0a68175b) Bug was created in #93353
1 parent bcd24e1 commit 0e5b391

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

static/app/views/issueDetails/groupReplays/groupReplays.spec.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,9 @@ describe('GroupReplays', () => {
201201
'info_ids',
202202
'is_archived',
203203
'os',
204-
'ota_updates',
205204
'platform',
206205
'project_id',
207206
'releases',
208-
'replay_type',
209207
'sdk',
210208
'started_at',
211209
'tags',

static/app/views/replays/types.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,8 @@ export type ReplayListQueryReferrer =
219219
| 'transactionReplays';
220220

221221
// Sync with ReplayListRecord below
222+
// Skip some fields because the backend doesn't support them in the field list:
223+
// 'ota_updates.channel', 'ota_updates.runtime_version', 'ota_updates.update_id', 'replay_type',
222224
export const REPLAY_LIST_FIELDS = [
223225
'activity',
224226
'browser.name',
@@ -245,13 +247,9 @@ export const REPLAY_LIST_FIELDS = [
245247
'is_archived',
246248
'os.name',
247249
'os.version',
248-
'ota_updates.channel',
249-
'ota_updates.runtime_version',
250-
'ota_updates.update_id',
251250
'platform',
252251
'project_id',
253252
'releases',
254-
'replay_type',
255253
'sdk.name',
256254
'sdk.version',
257255
'started_at',

0 commit comments

Comments
 (0)