Skip to content

Commit

Permalink
Merge branch 'rm/344755' into 'master'
Browse files Browse the repository at this point in the history
Fix: Member list don't scroll

See merge request kchat/webapp!856
  • Loading branch information
antonbuks committed Jul 30, 2024
2 parents 694b63b + e6a1d36 commit f1bed71
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ export interface Props {
channel: Channel;
currentUserIsChannelAdmin: boolean;
membersCount: number;
guestsCount: number;
searchTerms: string;
canGoBack: boolean;
teamUrl: string;
Expand Down Expand Up @@ -83,7 +82,6 @@ export default function ChannelMembersRHS({
currentUserIsChannelAdmin,
searchTerms,
membersCount,
guestsCount,
canGoBack,
teamUrl,
channelMembers,
Expand Down Expand Up @@ -312,7 +310,7 @@ export default function ChannelMembersRHS({
channel={channel}
openDirectMessage={openDirectMessage}
loadMore={loadMore}
hasNextPage={channelMembers.length < membersCount + guestsCount}
hasNextPage={channelMembers.length < membersCount}
isNextPageLoading={isNextPageLoading}
/>
)}
Expand Down

0 comments on commit f1bed71

Please sign in to comment.