diff --git a/src/components/guideGrid.tsx b/src/components/guideGrid.tsx index d94b4db1bb2d4..7ba66415789e9 100644 --- a/src/components/guideGrid.tsx +++ b/src/components/guideGrid.tsx @@ -10,6 +10,10 @@ type Props = { export default ({ platform }: Props): JSX.Element => { const currentPlatform = getPlatform(platform) as Platform; + // platform might actually not be a platform, so lets handle that case gracefully + if (!currentPlatform.guides) { + return null; + } return (