|
@@ -2,6 +2,7 @@ import {useCallback, useEffect, useMemo, useState} from 'react';
|
|
|
import * as Sentry from '@sentry/react';
|
|
|
import {Location} from 'history';
|
|
|
|
|
|
+import {ALL_ACCESS_PROJECTS} from 'sentry/constants/pageFilters';
|
|
|
import type {Group, Organization} from 'sentry/types';
|
|
|
import EventView from 'sentry/utils/discover/eventView';
|
|
|
import {decodeScalar} from 'sentry/utils/queryString';
|
|
@@ -34,7 +35,7 @@ function useReplayFromIssue({
|
|
|
returnIds: true,
|
|
|
query: `issue.id:[${group.id}]`,
|
|
|
statsPeriod: '14d',
|
|
|
- project: -1,
|
|
|
+ project: ALL_ACCESS_PROJECTS,
|
|
|
},
|
|
|
}
|
|
|
);
|