Skip to content
This repository has been archived by the owner on Jan 16, 2022. It is now read-only.

Commit

Permalink
fix(Developers): remove compilation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinechalifour committed Oct 6, 2019
1 parent 6f52838 commit f4da5e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Developers/Developers.tsx
Expand Up @@ -18,7 +18,7 @@ const Developers: FC<Props> = ({ type, visibleMax }) => {
const [visibleDevs, setVisibleDevs] = React.useState<number>(visibleMax || VISIBLE_MAX);
const { packageMeta } = React.useContext(DetailContext);

const handleLoadMore = () => {
const handleLoadMore = (): void => {
setVisibleDevs(visibleDevs + VISIBLE_MAX);
};

Expand Down

0 comments on commit f4da5e6

Please sign in to comment.