Skip to content

Commit

Permalink
Merge pull request #17 from blinktenor/master
Browse files Browse the repository at this point in the history
Fix Build
  • Loading branch information
Glazelf authored Oct 2, 2023
2 parents 0d95556 + 2d0b122 commit 5380b23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/FamilySelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import React, { FC } from 'react';

interface FamilySelectorProps {
updateFilter: object;
updateFilter: Function;
}

const FamilySelector: FC<FamilySelectorProps> = ({ updateFilter }) => {
Expand All @@ -18,7 +18,7 @@ const FamilySelector: FC<FamilySelectorProps> = ({ updateFilter }) => {
{ name: 'Undead', family: '_undead', alt: 'undead family' },
];

const handleFamilyClick = (familyName) => {
const handleFamilyClick = (familyName: string) => {
updateFilter(familyName);
};

Expand Down

0 comments on commit 5380b23

Please sign in to comment.