Merge pull request #4685 from urbit/la/fix-empty

interface: fix empty group home
This commit is contained in:
matildepark 2021-03-29 16:30:45 -04:00 committed by GitHub
commit ed8cf91427
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,10 @@ function GroupHome(props) {
api={api}
baseUrl={baseUrl} />
) : (
<EmptyGroupHome {...props} />
<EmptyGroupHome
groups={groups}
associations={associations}
groupPath={groupPath} />
)}
</Box>
);