import { isElectronMode } from '@renderer/api'; import { FlaskConical } from 'lucide-react'; export const WebPreviewBanner = (): React.JSX.Element | null => { if (isElectronMode()) { return null; } return (

Open the desktop app for full functionality

The browser version is still in development. Project actions, integrations, and live status updates may be limited here. Use the desktop app to access all features reliably.

); };