increase ringing timeout from 10 seconds to 90 seconds

This commit is contained in:
fkwp 2024-12-04 13:46:31 +01:00 committed by fkwp
parent 0bb3690fdc
commit bc4a541383

View file

@ -33,7 +33,7 @@ import { useEventEmitter } from "../hooks/useEventEmitter";
import { CallStore, CallStoreEvent } from "../stores/CallStore";
export const getIncomingCallToastKey = (callId: string, roomId: string): string => `call_${callId}_${roomId}`;
const MAX_RING_TIME_MS = 10 * 1000;
const MAX_RING_TIME_MS = 90 * 1000;
interface JoinCallButtonWithCallProps {
onClick: (e: ButtonEvent) => void;