Fix variable

This commit is contained in:
David Dyball
2020-07-02 14:48:37 +01:00
parent 88d71cd346
commit d78d9f20a7
@@ -82,7 +82,7 @@ const CatalogPageContents = () => {
);
const filterGroups = useMemo<ButtonGroup[]>(
(org: orgName) => [
() => [
{
name: 'Personal',
items: [
@@ -101,7 +101,7 @@ const CatalogPageContents = () => {
],
},
{
name: org,
name: orgName,
items: [
{
id: 'all',
@@ -111,7 +111,7 @@ const CatalogPageContents = () => {
],
},
],
[isStarredEntity, userId],
[isStarredEntity, userId, orgName],
);
return (