communication-ui-library icon indicating copy to clipboard operation
communication-ui-library copied to clipboard

Dailpad is launching by default

Open deshneni-akhil opened this issue 2 months ago • 4 comments

Describe the bug; what happened? I have integrated CallComposite into my application where I will provide the adapter and options fields below. The call composite upon successfully connecting to a call queue I see a DTMF keypad screen by default the only option to disable this keypad is to select more and disable the keypad option.

What are the steps to reproduce the issue?

<CallComposite
          adapter={adapter}
          formFactor="desktop"
          options={{
            callControls: {
              cameraButton: useLocalVideo,
              screenShareButton: useLocalVideo,
              moreButton: true,
              peopleButton: true,
              displayType: "compact",
              // dtmfDialerButton: false,
            },
            galleryOptions: {layout: 'speaker'},
            localVideoTile: !useLocalVideo ? false : { position: "floating" },
          }}
setAdapter(
  await createAzureCommunicationCallAdapter({
    displayName: displayName ?? "",
    userId: callAdapterArgs.userId,
    credential: callAdapterArgs.credential,
    targetCallees: callAdapterArgs.targetCallees,
    options: callAdapterArgs.options,
  })
);

adapter?.startCall(callAdapterArgs.targetCallees, {
  audioOptions: { muted: false }
});

What behavior did you expect?

Current Behaviour upon connecting to the call:

default_keypad

The expected behavior is to see the speaker instead of the keypad. expected_behaviour

In what environment did you see the issue?

Node Version: v20.10.0 NPM Version: 10.2.3 React Version: 18.2.0

  • @azure/communication-react npm package version (if applicable): [e.g. 1.3.0] @azure/communication-react: 1.15.0

  • @azure/communication-calling npm package version (if applicable): [e.g. 1.5.4-beta.1] @azure/communication-calling: 1.23.1

  • @azure/communication-chat npm package version (if applicable): [e.g. 1.2.2]

  • OS & Device: [e.g. MacOS, iOS, Windows, Linux] on [iPhone 7, PC] OS: Windows 10

  • Browser: [e.g. Microsoft Edge, Google Chrome, Apple Safari, Mozilla FireFox] Browser: Microsoft Edge

  • Browser Version: 124.0.2478.67

Is there any additional information?

deshneni-akhil avatar May 02 '24 01:05 deshneni-akhil