Skip to content

Commit 587fb66

Browse files
committed
fix: missing integration data
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
1 parent 376499d commit 587fb66

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • src/sections/Meshery/Meshery-integrations/Individual-Integrations

src/sections/Meshery/Meshery-integrations/Individual-Integrations/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ import { ReactComponent as MesheryLogoBullet } from "../../../../assets/images/m
1515

1616
const IndividualIntegrations = ({ data, children }) => {
1717
const { frontmatter } = data.mdx;
18-
const screenshotNodes = data.allFile.nodes;
18+
const screenshotNodes = [
19+
...(data.screenshots_raster?.nodes || []),
20+
...(data.screenshots_svg?.nodes || []),
21+
];
1922
const finalScreenshots =
2023
screenshotNodes.length === 0 ? frontmatter.workingSlides : screenshotNodes;
2124
const awsIntegrations = [

0 commit comments

Comments
 (0)