Use esbuild
This commit is contained in:
parent
3c1ccce9bd
commit
0174687542
25 changed files with 528 additions and 906 deletions
|
@ -1439,7 +1439,9 @@ function conversationUnloaded(id: string): ConversationUnloadedActionType {
|
|||
};
|
||||
}
|
||||
|
||||
function createGroup(): ThunkAction<
|
||||
function createGroup(
|
||||
createGroupV2 = groups.createGroupV2
|
||||
): ThunkAction<
|
||||
void,
|
||||
RootStateType,
|
||||
unknown,
|
||||
|
@ -1461,7 +1463,7 @@ function createGroup(): ThunkAction<
|
|||
dispatch({ type: 'CREATE_GROUP_PENDING' });
|
||||
|
||||
try {
|
||||
const conversation = await groups.createGroupV2({
|
||||
const conversation = await createGroupV2({
|
||||
name: composer.groupName.trim(),
|
||||
avatar: composer.groupAvatar,
|
||||
avatars: composer.userAvatarData.map(avatarData =>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue