Skip to content

Commit 02d7de7

Browse files
v0.3.1
1 parent 75166d8 commit 02d7de7

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quickblox-react-ui-kit",
3-
"version": "0.3.1-beta.8",
3+
"version": "0.3.1",
44
"main": "dist/index-ui.js",
55
"license": "MIT",
66
"dependencies": {

src/Data/source/remote/RemoteDataSource.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,8 @@ export class RemoteDataSource implements IRemoteDataSource {
819819
// artan 27/06/23
820820
if (newDTO.type === DialogType.group) {
821821
// eslint-disable-next-line no-await-in-loop
822-
await QBJoinGroupDialog(newDTO.id).catch(() => {
822+
await QBJoinGroupDialog(newDTO.id).catch((reason) => {
823+
console.log('getDialogs. QBJoinGroupDialog error', reason);
823824
throw new RemoteDataSourceException(
824825
INCORRECT_REMOTE_DATASOURCE_DATA_EXCEPTION_MESSAGE,
825826
INCORRECT_REMOTE_DATASOURCE_DATA_EXCEPTION_CODE,

src/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1271,11 +1271,11 @@ const QuickBloxUIKitDesktopLayout: React.FC<
12711271
minHeight: clientContainerHeight,
12721272
maxHeight: clientContainerHeight,
12731273
}}
1274-
subHeaderContent={
1275-
<div>
1276-
<p>v0.3.1-beta.5</p>
1277-
</div>
1278-
}
1274+
// subHeaderContent={
1275+
// <div>
1276+
// <p>v0.3.1-beta.5</p>
1277+
// </div>
1278+
// }
12791279
// upHeaderContent={<CompanyLogo />}
12801280
dialog={selectedDialog}
12811281
dialogViewModel={dialogsViewModel}

0 commit comments

Comments
 (0)