diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx index 3fa7c81..f23b569 100644 --- a/frontend/src/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -31,7 +31,7 @@ export default async function Home() { {/* Globe Container */} -
NORAD ID
+{satelliteInfo diff --git a/frontend/src/lib/data/fetchSatelliteInfo.ts b/frontend/src/lib/data/fetchSatelliteInfo.ts index b4d7399..0626061 100644 --- a/frontend/src/lib/data/fetchSatelliteInfo.ts +++ b/frontend/src/lib/data/fetchSatelliteInfo.ts @@ -77,6 +77,9 @@ export default async function fetchSatelliteInfo({ content: graphqlData?.data?.satellites?.data[0]?.attributes?.content ?? "", relatedProjects: projects ?? [], + noradId: + graphqlData?.data?.satellites?.data[0]?.attributes + ?.catalogNumberNORAD ?? undefined, }; return satelliteInfo;