Skip to content

Commit

Permalink
tidying up
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed May 8, 2024
1 parent fce2723 commit f04c47c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ export const App = () => {
// for each observation selected
selectedObservations.map (function (obs) {
// render the observation
return <ObservationDialog key={obs.station_name} obs={obs} />;
return <ObservationDialog key={obs["station_name"]} obs={obs} />;
})
}
<Map />
<Sidebar />
</Fragment>
</Fragment>
);
};

0 comments on commit f04c47c

Please sign in to comment.