()
| 66 | getWebSearchParams() ?? getShowcaseSearchParamsFromBuildEnv(); |
| 67 | |
| 68 | const getInitialStory = () => { |
| 69 | const storyId = getInitialSearchParams()?.get("story"); |
| 70 | |
| 71 | return stories.find((story) => story.id === storyId) ?? defaultStory; |
| 72 | }; |
| 73 | |
| 74 | const getStoryFromParams = ( |
| 75 | params: ShowcaseSearchParams | null | undefined, |
nothing calls this directly
no test coverage detected