We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31372a7 commit 0145e3dCopy full SHA for 0145e3d
CHANGELOG_DRAFT.md
@@ -1,5 +1,18 @@
1
-## v3.7.1
+## v3.7.2
2
3
-### Fix
+### Feat
4
5
-- Fixed the behavior to call `disconnectWebsocket()` instead of `disconnect()` on unmount container to avoid unintentionally clearing the cache.
+- Added event handlers interface for `onOpenURL` and `onOpenFileURL` to `SendbirdUIKitContainer`.
6
+ ```tsx
7
+ <SendbirdUIKitContainer
8
+ appId={APP_ID}
9
+ handlers={{
10
+ onOpenURL: (url) => {
11
+ console.log('onOpenURL', url);
12
+ },
13
+ onOpenFileURL: (url) => {
14
+ console.log('onOpenFileURL', url);
15
16
+ }}
17
+ />
18
+ ```
0 commit comments