I solove this error just when join join using id as number and must as string
this update the code in `
uid: currentUserId
``
const acceptCall = useCallback(async () => {
if (!incomingCall) return;
const { token, channelName,uid } = callInfo;
setIncomingCall(false);
await joinVoiceChannel({ token, channel: channelName, uid});
}, [incomingCall, joinVoiceChannel, currentUserId, callInfo]);