diff --git a/components/explore_users_page.go b/components/explore_users_page.go index 932cfbe705..31ebe3c44b 100644 --- a/components/explore_users_page.go +++ b/components/explore_users_page.go @@ -14,7 +14,6 @@ type ExploreUsersPageProps struct { Keyword string SortType string Users []*user.User - // ContextUser *user.User Context *context.Context IsSigned bool } @@ -47,14 +46,13 @@ func ExploreUsersPage(data ExploreUsersPageProps) g.Node { gh.Class("ui container"), ExploreSearchMenu(data, true), UserList(UserListProps{ - // ContextUser: data.ContextUser, Context: data.Context, Users: data.Users, IsSigned: data.IsSigned, Locale: data.Locale, PageIsAdminUsers: false, }), - // Pagination(data), + // TODO Pagination(data), ), ), g.Raw(footer), diff --git a/components/user_list.go b/components/user_list.go index add95bdcd4..a920177c49 100644 --- a/components/user_list.go +++ b/components/user_list.go @@ -11,8 +11,7 @@ import ( ) type UserListProps struct { - Users []*user.User - // ContextUser *user.User + Users []*user.User IsSigned bool PageIsAdminUsers bool Locale translation.Locale