diff --git a/static/app/components/events/eventReplay/replayPreviewPlayer.tsx b/static/app/components/events/eventReplay/replayPreviewPlayer.tsx index 89f6d7fdd353ca..92259d0d9c075c 100644 --- a/static/app/components/events/eventReplay/replayPreviewPlayer.tsx +++ b/static/app/components/events/eventReplay/replayPreviewPlayer.tsx @@ -82,7 +82,7 @@ function ReplayPreviewPlayer({ if (replayRecord && !replayRecord.has_viewed && !isFetching && isPlaying) { markAsViewed({projectSlug: replayRecord.project_id, replayId: replayRecord.id}); } - }, [isFetching, isPlaying, markAsViewed, organization, replayRecord]); + }, [isFetching, isPlaying, markAsViewed, replayRecord]); return ( diff --git a/static/app/views/replays/details.tsx b/static/app/views/replays/details.tsx index 04c9a0d60935f9..eee34b1ee5d9db 100644 --- a/static/app/views/replays/details.tsx +++ b/static/app/views/replays/details.tsx @@ -83,15 +83,7 @@ function ReplayDetails({params: {replaySlug}}: Props) { ) { markAsViewed({projectSlug, replayId}); } - }, [ - fetchError, - fetching, - markAsViewed, - organization, - projectSlug, - replayId, - replayRecord, - ]); + }, [fetchError, fetching, markAsViewed, projectSlug, replayId, replayRecord]); const initialTimeOffsetMs = useInitialTimeOffsetMs({ orgSlug,