React Native Chat UIKit - Unable to Trigger Event on IOS Notification Click

[Problem]
Hello, we are using React Native Chat UIKit, and Firebase Messaging for push notification. It works fine and we are able to send and receive notification when chatting.

However on IOS, we can’t seem to get any event from setBackgroundMessageHandler or notifee.onBackgroundEvent (works fine on Android). We suspect this is because the notification sent is data-only.

We enabled mutable-content and Content-available on the admin panel, but nothing works. Is there a way to update the notification when chatting so it becomes notification + data notifications type?

We need this because we want to open the chat room when user click on the notification.


[UIKit Version]
@sendbird/uikit-react-native 3.9.3

[Reproduction Steps]
Sample code to receive notification click event on our project
notifee.onBackgroundEvent(async ({ type, detail }) => { console.log('Notifee onBackgroundEvent ', detail) })

messaging().setBackgroundMessageHandler(async (remoteMessage) => { console.log("firebase setBackgroundMessageHandler ", remoteMessage?.data) })

[Frequency]
Always

[Current impact]
Can’t open chat room when user click on notification.