Skip to content

Commit 2220443

Browse files
authored
Merge branch 'master' into leecalcote/eslint/fixes
2 parents 3b6b0aa + 0d05dc6 commit 2220443

3 files changed

Lines changed: 4 additions & 234 deletions

File tree

package-lock.json

Lines changed: 0 additions & 232 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@
131131
"cross-env": "^10.0.0",
132132
"env-cmd": "^10.1.0",
133133
"eslint": "^9.39.1",
134-
"eslint-config-react-app": "^7.0.1",
135134
"eslint-mdx": "^3.6.2",
136135
"eslint-plugin-mdx": "^3.6.2",
137136
"eslint-plugin-react": "^7.37.5",

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)