Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
moodlenet
MoodleNet Frontend
Commits
97438866
Commit
97438866
authored
Jun 03, 2020
by
aleclofabbro
Browse files
fix user community follows query it was misssing limit var
parent
3eb81ac2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/fe/community/user/useUserFollowedCommunities.ts
View file @
97438866
...
...
@@ -10,7 +10,7 @@ export interface Props {
export
const
useUserFollowedCommunities
=
(
userId
:
User
[
'
id
'
])
=>
{
const
userQ
=
GQL
.
useUserFollowedCommunitiesQuery
({
variables
:
{
userId
}
variables
:
{
userId
,
limit
:
DEFAULT_PAGE_SIZE
}
});
const
followedCommunitiesPage
=
usePage
(
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment