Skip to content

Commit

Permalink
chore: Release v0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
HoshinoSuzumi committed Apr 15, 2024
1 parent da8006b commit 950a064
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions app/satellites/SatelliteTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,20 +87,18 @@ const SatelliteTableRow = ({
satellite,
tle,
location,
timestamp,
compact,
}: {
satellite: Satellite,
tle: LatestTleSet | null
location?: Exclude<ObserverLocationStore, 'pending'> | null
timestamp: number
compact?: boolean
}) => {
const [expanded, setExpanded] = useState(false)
const [sidePopVisible, setSidePopVisible] = useState(false)

const shimmer = (w: number, h: number) => `
<svg width="${ w }" height="${ h }" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg width="${ w }" height="${ h }" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="g">
<stop stop-color="#333" offset="20%" />
Expand Down Expand Up @@ -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 }
/>
)) }
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ham-set",
"version": "0.3.3",
"version": "0.3.4",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
Expand Down

0 comments on commit 950a064

Please sign in to comment.