I ran into the same problem today and managed to fix it.
I had this code in my component:
const { join } = useMeeting({ ... ... });
useEffect(() => {
join();
}, []);
It seems the problem is related to join
so I add a timeout on it.
useEffect(() => {
setTimeout(() => {
join();
}, 500);
}, []);
This is a bad solution but it did save my day.