diff --git a/app/satellites/SatelliteTable.tsx b/app/satellites/SatelliteTable.tsx index 4bddc87..741650b 100644 --- a/app/satellites/SatelliteTable.tsx +++ b/app/satellites/SatelliteTable.tsx @@ -87,20 +87,18 @@ const SatelliteTableRow = ({ satellite, tle, location, - timestamp, compact, }: { satellite: Satellite, tle: LatestTleSet | null location?: Exclude | null - timestamp: number compact?: boolean }) => { const [expanded, setExpanded] = useState(false) const [sidePopVisible, setSidePopVisible] = useState(false) const shimmer = (w: number, h: number) => ` - + @@ -765,7 +763,6 @@ export const SatelliteTable = ({ satellite={ satellite } tle={ tleList.find(i => i.norad_cat_id === satellite.norad_cat_id) || null } location={ location } - timestamp={ timestamp } compact={ compact } /> )) } diff --git a/package.json b/package.json index 9a236b8..67c6f42 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ham-set", - "version": "0.3.3", + "version": "0.3.4", "private": true, "scripts": { "dev": "next dev -p 3000",