feat: add CallParticipantsIndicator component to display active call participants

fix: silently ignore OIDC configuration errors in ServerConfigsLoader
fix: handle loadPreview errors in UrlPreviewCard component
fix: silently ignore errors in notification tap listener setup in tauri
This commit is contained in:
2026-02-22 03:17:36 +11:00
parent a713141420
commit f5ba778e46
6 changed files with 227 additions and 61 deletions

View File

@@ -114,7 +114,11 @@ export const setupNotificationTapListener = async (onTap: (path: string) => void
}
});
} catch (err) {
console.warn('Failed to set up notification tap listener:', err);
// Silently ignore errors in Electron compatibility layer
// Only warn if we're actually in a Tauri environment
if (typeof window !== 'undefined' && '__TAURI__' in window) {
console.warn('Failed to set up notification tap listener:', err);
}
}
};