Dispatch.usecontext is not a function 에러

[Problem/Question]
// Detailed description of issue.
현재 uikit을 사용해 개발중에 있습니다. 예제와 같이 App단에 SendbirdUIKitContainer를 넣고 하고 있지만 해당 컴포넌트 내부에서 사용하는 import { UserProfileProvider } from ‘…/contexts/UserProfileCtx’;의 UserProfileProvider사용코드 내부에서 에러가 발생했습니다.
해당 컴포넌트 내의 React hook들에서 에러가 발생하기 시작했습니다.
가장 처음 사용되는 훅인 useSafeAreaInsets() 내부에서 사용하는 useContext에서 오류가 발생했지만, 해당 구문을 주석처리하고 useEffect등을 함수내부 제일 위로 작성해 사용해도 같습니다.
이와 관련한 문제의 해결 방법이 있을까요?

Currently developing using uikit. As in the example, I put SendbirdUIKitContainer in the App section, but an error occurred inside the UserProfileProvider usage code of import { UserProfileProvider } from ‘…/contexts/UserProfileCtx’; used inside the component.
Errors started to occur in React hooks within the component.
An error occurred in the useContext used inside useSafeAreaInsets(), the first hook used, but it is the same even if you comment out the syntax and write useEffect at the top of the function.
Is there any workaround for this related issue?


// If problem, please fill out the below. If question, please delete.
[UIKit Version]
// What version of the SDK are you using?
3.0.4

[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.
react-native 0.71.11로 앱을 만들고 sendbird에 필요한 라이브러리들을 설치합니다.
SendbirdUIKitContainer를 사용합니다.
실행합니다.

Create an app with react-native 0.71.11 and install required libraries for sendbird.
I use SendbirdUIKitContainer.
Run.

[Frequency]
// How frequently is this issue occurring?
첫번째 리로드에 항상

always on first reload

[Current impact]
// How is this currently impacting your implementation?
앱이 제대로 작동하지 않습니다.

App doesn’t work properly.

if (DEV && !WARN_onCreateChannel && !onCreateChannel) {
Logger.warn(
‘You should pass userProfile.onCreateChannel prop to SendbirdUIKitContainer if want to use message in a user profile’,
);
WARN_onCreateChannel = true;
}

해당 구문 아래에 있는 것에대해 에러가 발생하는 것 같습니다. 해당 구문을 주석처리 하니 에러가 발생하지 않습니다.

console.warn을 찍은 이후 이러한 현상이 발생하는걸로 보이는데, 혹시 이에 대해 테스트 가능할까요?