Compare commits

...

1 commit

Author SHA1 Message Date
Justin Edmund
e1b70e69cf Fix renamed variables 2024-05-06 14:51:20 -07:00
2 changed files with 2 additions and 2 deletions

View file

@ -137,7 +137,7 @@ const ProfileRoute: React.FC<Props> = ({
<GridRep
party={party}
key={`party-${i}`}
loading={isFetching}
loading={fetching}
onClick={goTo}
onSave={(teamId, favorited) => toggleFavorite(teamId, favorited)}
/>

View file

@ -132,7 +132,7 @@ const SavedRoute: React.FC<Props> = ({
<GridRep
party={party}
key={`party-${i}`}
loading={isFetching}
loading={fetching}
onClick={goTo}
onSave={toggleFavorite}
/>