join -> jsxJoin

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-22 07:47:04 +02:00
parent 51c112fd82
commit 9f227893b1
No known key found for this signature in database
GPG key ID: 55C211A1226CB17D
3 changed files with 6 additions and 6 deletions

View file

@ -29,7 +29,7 @@ import defaultDispatcher from '../../../dispatcher/dispatcher';
import { RightPanelPhases } from '../../../stores/RightPanelStorePhases';
import { Action } from '../../../dispatcher/actions';
import { SetRightPanelPhasePayload } from '../../../dispatcher/payloads/SetRightPanelPhasePayload';
import { join } from '../../../utils/ReactUtils';
import { jsxJoin } from '../../../utils/ReactUtils';
import { EventType } from 'matrix-js-sdk/src/@types/event';
const onPinnedMessagesClick = (): void => {
@ -138,7 +138,7 @@ export default class MemberEventListSummary extends React.Component<IProps> {
return null;
}
return join(summaries, ", ");
return jsxJoin(summaries, ", ");
}
/**