Initial app for react is failed

I created simple app for testing

export default function Support() {
  return (
    <div className="w-100 h-100">
      <SendbirdApp
        // Add the two lines below.
        appId={REACT_APP_SENDBIRD_APP_ID} // Specify your Sendbird application ID.
        userId={REACT_APP_SENDBIRD_USER_ID} // Specify your user ID.
      />
    </div>
  );
}

got a UI that just keep loading

chat plus is clickable, but got error when clicking the group

Cannot read properties of undefined (reading 'next')
TypeError: Cannot read properties of undefined (reading 'next')
    at http://localhost:3000/static/js/bundle.js:139643:32
    at commitHookEffectListMount (http://localhost:3000/static/js/bundle.js:68441:30)
    at commitPassiveMountOnFiber (http://localhost:3000/static/js/bundle.js:69934:17)
    at commitPassiveMountEffects_complete (http://localhost:3000/static/js/bundle.js:69906:13)
    at commitPassiveMountEffects_begin (http://localhost:3000/static/js/bundle.js:69896:11)
    at commitPassiveMountEffects (http://localhost:3000/static/js/bundle.js:69886:7)
    at flushPassiveEffectsImpl (http://localhost:3000/static/js/bundle.js:71771:7)
    at flushPassiveEffects (http://localhost:3000/static/js/bundle.js:71723:18)
    at commitRootImpl (http://localhost:3000/static/js/bundle.js:71682:9)
    at commitRoot (http://localhost:3000/static/js/bundle.js:71465:9)

Hi, have you got any solution?