mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-18 07:36:00 +01:00
@@ -57,7 +57,7 @@ export const SmartCallLinkDetails = memo(function SmartCallLinkDetails({
|
||||
|
||||
const handleStartCallLinkLobby = useCallback(() => {
|
||||
strictAssert(callLink != null, 'callLink not found');
|
||||
startCallLinkLobby({ rootKey: callLink.rootKey, epoch: callLink.epoch });
|
||||
startCallLinkLobby({ rootKey: callLink.rootKey });
|
||||
}, [callLink, startCallLinkLobby]);
|
||||
|
||||
const handleUpdateCallLinkRestrictions = useCallback(
|
||||
|
||||
@@ -49,7 +49,6 @@ export const SmartCallLinkEditModal = memo(
|
||||
const callLinkWebUrl = linkCallRoute
|
||||
.toWebUrl({
|
||||
key: callLink?.rootKey,
|
||||
epoch: callLink?.epoch,
|
||||
})
|
||||
.toString();
|
||||
drop(copyCallLink(callLinkWebUrl));
|
||||
@@ -73,7 +72,7 @@ export const SmartCallLinkEditModal = memo(
|
||||
|
||||
const handleStartCallLinkLobby = useCallback(() => {
|
||||
strictAssert(callLink != null, 'callLink not found');
|
||||
startCallLinkLobby({ rootKey: callLink.rootKey, epoch: callLink.epoch });
|
||||
startCallLinkLobby({ rootKey: callLink.rootKey });
|
||||
toggleCallLinkEditModal(null);
|
||||
}, [callLink, startCallLinkLobby, toggleCallLinkEditModal]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user