···11+// Desktop app is detected via a global set by the Electron preload script.
22+declare global {
33+ interface Window {
44+ __PSTREAM_DESKTOP__?: boolean;
55+ }
66+}
77+18export function useIsDesktopApp(): boolean {
22- return navigator.userAgent.includes("P-Stream/");
99+ return Boolean(window.__PSTREAM_DESKTOP__);
310}