+ );
+}
diff --git a/ts/state/smart/CallLinkDetails.tsx b/ts/state/smart/CallLinkDetails.tsx
index 4884292f35c..d615d35f1ab 100644
--- a/ts/state/smart/CallLinkDetails.tsx
+++ b/ts/state/smart/CallLinkDetails.tsx
@@ -12,7 +12,6 @@ import {
} from '../selectors/calling';
import { useGlobalModalActions } from '../ducks/globalModals';
import { useCallingActions } from '../ducks/calling';
-import * as log from '../../logging/log';
import { strictAssert } from '../../util/assert';
import type { CallLinkRestrictions } from '../../types/CallLink';
import { isAnybodyInGroupCall } from '../ducks/callingHelpers';
@@ -77,11 +76,6 @@ export const SmartCallLinkDetails = memo(function SmartCallLinkDetails({
activeCall && callLink && activeCall.conversationId === callLink.roomId
);
- if (callLink == null) {
- log.error(`SmartCallLinkDetails: callLink not found for room ${roomId}`);
- return null;
- }
-
return (