Skip to content

Commit

Permalink
Address react/no-unknown-property violations
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlin committed Jan 10, 2024
1 parent c613315 commit 11f6704
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion static-site/.eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ ignorePatterns:
- public/

rules:
react/no-unknown-property: off
react/prop-types: off
react-hooks/exhaustive-deps: off

Expand Down
2 changes: 1 addition & 1 deletion static-site/src/components/Datasets/dataset-map.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ class DatasetMap extends React.Component {
key={dataset.coords.toString()}
>
<MapMarkerContainer>
<a href={dataset.url} data-tip data-for={dataset.url} dataset={dataset}>
<a href={dataset.url} data-tip data-for={dataset.url}>
{isNextstrainDataset ? nextstrainDataset : communityDatasets[dataset.level]}
</a>
</MapMarkerContainer>
Expand Down

0 comments on commit 11f6704

Please sign in to comment.