Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit 11c8caf

Browse files
committed
Fix component name
1 parent cc40aff commit 11c8caf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pages/telemetry/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { graphql } from "gatsby";
33
import SEO from "../../components/SEO";
44
import Layout from "../../components/Layout";
55

6-
const GetStarted = (props) => {
6+
const TelemetryPage = (props) => {
77
const html = props.data.markdownRemark.html;
88
return (
99
<Layout bodyClass="page-telemetry">
@@ -27,4 +27,4 @@ export const query = graphql`
2727
}
2828
`;
2929

30-
export default GetStarted;
30+
export default TelemetryPage;

0 commit comments

Comments
 (0)