Skip to content

Commit

Permalink
chore: fix lint and typing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lutangar committed Nov 6, 2023
1 parent b700af5 commit b18c9ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/frontend/src/components/ExternalLink.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable react/jsx-no-useless-fragment */
import React, { PropsWithChildren } from 'react';

export const ExternalLink = ({ href, children }: PropsWithChildren<{ href?: string }>) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export interface LayerHoverInfoProps extends ExpandedProps {
fieldsToShow: TooltipField[];
layer: MapboxLayerGL;
data: DataRow & {
points: any[];
points: [number, number][];
elevationValue: string;
colorValue: string;
};
Expand Down

0 comments on commit b18c9ac

Please sign in to comment.