Fix renamed variables (#419)

Silly bug!

Co-authored-by: Justin Edmund <383021+jedmund@users.noreply.github.com>
This commit is contained in:
Justin Edmund 2024-05-06 14:51:49 -07:00 committed by GitHub
parent 2160a57a20
commit 4bc211c240
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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}
/>