Skip to content

Commit

Permalink
Adding missing return type for SitePicker component function
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmaillot committed Aug 16, 2024
1 parent 6515ebd commit 1bd4601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controls/sitePicker/SitePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const SitePicker: React.FunctionComponent<ISitePickerProps> = (
[sites]
);

const CustomChevron = () => {
const CustomChevron = (): JSX.Element => {
if (sites && sites.length > 0) {
return (
<div className={styles.customChevronContainer}>
Expand Down

0 comments on commit 1bd4601

Please sign in to comment.