diff --git a/src/app/pages/client/ClientNonUIFeatures.tsx b/src/app/pages/client/ClientNonUIFeatures.tsx index 731afe9cf..8e0f33008 100644 --- a/src/app/pages/client/ClientNonUIFeatures.tsx +++ b/src/app/pages/client/ClientNonUIFeatures.tsx @@ -265,21 +265,9 @@ type ClientNonUIFeaturesProps = { children: ReactNode; }; -function SuppressPrintShortcut() { - useEffect(() => { - const handler = (e: KeyboardEvent) => { - if ((e.ctrlKey || e.metaKey) && e.code === 'KeyP') e.preventDefault(); - }; - window.addEventListener('keydown', handler); - return () => window.removeEventListener('keydown', handler); - }, []); - return null; -} - export function ClientNonUIFeatures({ children }: ClientNonUIFeaturesProps) { return ( <> -