Skip to content

Commit

Permalink
chore: allow exporting mobile recordings while impersonating a user (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra authored Sep 5, 2024
1 parent acda90e commit 20e65c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ const MenuActions = (): JSX.Element => {
useActions(sessionRecordingPlayerLogic)
const { fetchSimilarRecordings } = useActions(sessionRecordingDataLogic(logicProps))

const hasMobileExport = useFeatureFlag('SESSION_REPLAY_EXPORT_MOBILE_DATA')
const hasMobileExport = window.IMPERSONATED_SESSION || useFeatureFlag('SESSION_REPLAY_EXPORT_MOBILE_DATA')
const hasSimilarRecordings = useFeatureFlag('REPLAY_SIMILAR_RECORDINGS')

const onDelete = (): void => {
Expand Down

0 comments on commit 20e65c6

Please sign in to comment.