Fix renamed variables (#419)
Silly bug! Co-authored-by: Justin Edmund <383021+jedmund@users.noreply.github.com>
This commit is contained in:
parent
2160a57a20
commit
4bc211c240
2 changed files with 2 additions and 2 deletions
|
|
@ -137,7 +137,7 @@ const ProfileRoute: React.FC<Props> = ({
|
||||||
<GridRep
|
<GridRep
|
||||||
party={party}
|
party={party}
|
||||||
key={`party-${i}`}
|
key={`party-${i}`}
|
||||||
loading={isFetching}
|
loading={fetching}
|
||||||
onClick={goTo}
|
onClick={goTo}
|
||||||
onSave={(teamId, favorited) => toggleFavorite(teamId, favorited)}
|
onSave={(teamId, favorited) => toggleFavorite(teamId, favorited)}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -132,7 +132,7 @@ const SavedRoute: React.FC<Props> = ({
|
||||||
<GridRep
|
<GridRep
|
||||||
party={party}
|
party={party}
|
||||||
key={`party-${i}`}
|
key={`party-${i}`}
|
||||||
loading={isFetching}
|
loading={fetching}
|
||||||
onClick={goTo}
|
onClick={goTo}
|
||||||
onSave={toggleFavorite}
|
onSave={toggleFavorite}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue