diff --git a/static/app/components/events/eventReplay/replayPreviewPlayer.tsx b/static/app/components/events/eventReplay/replayPreviewPlayer.tsx index b8e4a38bca149c..89f6d7fdd353ca 100644 --- a/static/app/components/events/eventReplay/replayPreviewPlayer.tsx +++ b/static/app/components/events/eventReplay/replayPreviewPlayer.tsx @@ -79,9 +79,6 @@ function ReplayPreviewPlayer({ const {mutate: markAsViewed} = useMarkReplayViewed(); useEffect(() => { - if (!organization.features.includes('session-replay-viewed-by-ui')) { - return; - } if (replayRecord && !replayRecord.has_viewed && !isFetching && isPlaying) { markAsViewed({projectSlug: replayRecord.project_id, replayId: replayRecord.id}); } diff --git a/static/app/views/replays/details.tsx b/static/app/views/replays/details.tsx index 09afa12e98dc22..04c9a0d60935f9 100644 --- a/static/app/views/replays/details.tsx +++ b/static/app/views/replays/details.tsx @@ -74,9 +74,6 @@ function ReplayDetails({params: {replaySlug}}: Props) { const {mutate: markAsViewed} = useMarkReplayViewed(); useEffect(() => { - if (!organization.features.includes('session-replay-viewed-by-ui')) { - return; - } if ( !fetchError && replayRecord &&