Skip to content

Commit d704f4a

Browse files
Merge pull request #7208 from Emu55/remove-double-slash
[Meshery Integrations] Fix double slash in Meshery integrations URL
2 parents 9275cd0 + ad9afcb commit d704f4a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • src/sections/Meshery/Meshery-integrations

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ const Integrations = () => {
1515
if (location.pathname !== "/") {
1616
return (
1717
<>
18-
<IntegrationsGrid count={"All"} />
18+
<IntegrationsGrid count={"All"} />
1919
<Card />
2020
<FAQ category={["Meshery"]} subcategory={["Integrations"]} />
2121
</>
2222
);
2323
} else {
2424
return (
2525
<>
26-
<IntegrationsGrid count={13} />
26+
<IntegrationsGrid count={13} />
2727
<div style={{ marginTop: "20px" }}>
2828
<Button className="seeAllBtn"
29-
$primary title={"See All"}
30-
$url="/cloud-native-management/meshery/integrations/"
29+
$primary title={"See All"}
30+
$url="cloud-native-management/meshery/integrations/"
3131
/>
3232
</div>
3333
</>

0 commit comments

Comments
 (0)