diff --git a/static/app/views/stories/index.tsx b/static/app/views/stories/index.tsx
index 7a038b75b0b63e..530c4930d1b906 100644
--- a/static/app/views/stories/index.tsx
+++ b/static/app/views/stories/index.tsx
@@ -6,6 +6,7 @@ import {space} from 'sentry/styles/space';
import type {RouteComponentProps} from 'sentry/types/legacyReactRouter';
import {useHotkeys} from 'sentry/utils/useHotkeys';
import OrganizationContainer from 'sentry/views/organizationContainer';
+import RouteAnalyticsContextProvider from 'sentry/views/routeAnalyticsContextProvider';
import EmptyStory from 'sentry/views/stories/emptyStory';
import ErrorStory from 'sentry/views/stories/errorStory';
import storiesContext from 'sentry/views/stories/storiesContext';
@@ -25,40 +26,42 @@ export default function Stories({location}: Props) {
useHotkeys([{match: '/', callback: () => searchInput.current?.focus()}], []);
return (
-
-
-
-
-
- setSearchTerm(e.target.value.toLowerCase())}
- />
-
- s.toLowerCase().includes(searchTerm))}
+
+
+
+
+
+
+ setSearchTerm(e.target.value.toLowerCase())}
/>
-
-
-
- {story.error ? (
-
-
-
- ) : story.resolved ? (
-
-
-
- ) : (
-
-
-
- )}
-
-
+
+ s.toLowerCase().includes(searchTerm))}
+ />
+
+
+
+ {story.error ? (
+
+
+
+ ) : story.resolved ? (
+
+
+
+ ) : (
+
+
+
+ )}
+
+
+
);
}