Skip to content

Commit 1bd4601

Browse files
Adding missing return type for SitePicker component function
1 parent 6515ebd commit 1bd4601

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controls/sitePicker/SitePicker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export const SitePicker: React.FunctionComponent<ISitePickerProps> = (
126126
[sites]
127127
);
128128

129-
const CustomChevron = () => {
129+
const CustomChevron = (): JSX.Element => {
130130
if (sites && sites.length > 0) {
131131
return (
132132
<div className={styles.customChevronContainer}>

0 commit comments

Comments
 (0)