Skip to content

Commit

Permalink
remove closest approach
Browse files Browse the repository at this point in the history
  • Loading branch information
bodhisha committed May 22, 2021
1 parent 34b2ba7 commit 21231b7
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/Components/Asteroids/ShowAsteroid.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,21 +130,6 @@ export default function ShowAsteroid({ asteroid }) {
{asteroid.orbital_data.last_observation_date || "Nil"}
</dd>
</div>
{asteroid.close_approach_data.map((date) => {
return (
<>
<div className="sm:col-span-1">
<dt className="text-sm leading-5 font-medium text-gray-500">
Closest Approach date:
</dt>
<dd className="mt-1 text-sm leading-5 text-gray-900">
{date.close_approach_date_full || "Nil"}
</dd>
</div>
</>
);
})}

<div className="sm:col-span-1">
<dt className="text-sm leading-5 font-medium text-gray-500">
Aphelion distance
Expand Down

0 comments on commit 21231b7

Please sign in to comment.