Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jolevesq authored and jolevesq committed Dec 13, 2024
1 parent 63c6300 commit 94216af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class MapEventProcessor extends AbstractEventProcessor {
},
{
equalityFn: (prev, curr) => {
// Quick length checks first (prevents re-render) and calls to to removeHighlight
// Quick length checks first (prevents re-render) and calls to removeHighlight
if (prev === curr) return true;
if (prev.length !== curr.length) return false;
if (prev.length === 0) return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export function FeatureInfo({ feature }: FeatureInfoProps): JSX.Element | null {

// Effects
useEffect(() => {
logger.logTraceUseEffect('FEATURE-INO - checkedFeatures', checkedFeatures);
logger.logTraceUseEffect('FEATURE-INFO - checkedFeatures', checkedFeatures);

if (!featureData?.uid) return;

Expand Down

0 comments on commit 94216af

Please sign in to comment.