From ea224c32873105ccd76c3fc9f7ab63045f1b631e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20Alexander=20Str=C3=B8mseng?= Date: Sun, 28 Apr 2024 15:02:31 +0200 Subject: [PATCH] move lanuch date above map (#379) --- .../src/app/satellites/[satelliteSlug]/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/app/satellites/[satelliteSlug]/page.tsx b/frontend/src/app/satellites/[satelliteSlug]/page.tsx index a4b83a1..4be2fbf 100644 --- a/frontend/src/app/satellites/[satelliteSlug]/page.tsx +++ b/frontend/src/app/satellites/[satelliteSlug]/page.tsx @@ -111,13 +111,6 @@ export default async function SatelliteInfoPage({ ) : null} - {/* Container for map */} - {satelliteInfo.noradId ? ( -
- -
- ) : null} - {/* Container for launch date */} {satelliteInfo.launchDate ? (
@@ -127,6 +120,13 @@ export default async function SatelliteInfoPage({
) : null} + {/* Container for map */} + {satelliteInfo.noradId ? ( +
+ +
+ ) : null} + {/* Container for body content */}