Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Mar 6, 2024
1 parent 027d1ee commit ff91c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MainWindow/Tile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const Tile: React.FC<ITileProps> = (props) => {
resetKeys={[selectedTileType, selectedRegion, selectedSatelliteVariableId]}
>
<div className='tile-title'>
<h1><b>{selectedTileType == "map" ? selectedSatelliteVariable.longName : selectedSatelliteVariable.longNamePlot}</b></h1>
<h1><b>{selectedTileType === "map" ? selectedSatelliteVariable.longName : selectedSatelliteVariable.longNamePlot}</b></h1>
<h2><b>{selectedRegion.longName}</b> as of <b>{selectedSatelliteVariable.lastDateWithData}</b></h2>
<h3>
Climatology calculated over{' '}
Expand Down

0 comments on commit ff91c0f

Please sign in to comment.