diff --git a/app/components/chat/StarterTemplates.tsx b/app/components/chat/StarterTemplates.tsx index fa51961b..0f46a603 100644 --- a/app/components/chat/StarterTemplates.tsx +++ b/app/components/chat/StarterTemplates.tsx @@ -21,14 +21,6 @@ const FrameworkLink: React.FC = ({ template }) => ( ); const StarterTemplates: React.FC = () => { - // Debug: Log available templates and their icons - React.useEffect(() => { - console.log( - 'Available templates:', - STARTER_TEMPLATES.map((t) => ({ name: t.name, icon: t.icon })), - ); - }, []); - return (
or start a blank app with your favorite stack diff --git a/app/lib/hooks/useShortcuts.ts b/app/lib/hooks/useShortcuts.ts index 447a97e3..468cf0d8 100644 --- a/app/lib/hooks/useShortcuts.ts +++ b/app/lib/hooks/useShortcuts.ts @@ -40,19 +40,6 @@ export function useShortcuts(): void { return; } - // Debug logging in development only - if (import.meta.env.DEV) { - console.log('Key pressed:', { - key: event.key, - code: event.code, - ctrlKey: event.ctrlKey, - shiftKey: event.shiftKey, - altKey: event.altKey, - metaKey: event.metaKey, - target: event.target, - }); - } - // Handle shortcuts for (const [name, shortcut] of Object.entries(shortcuts)) { const keyMatches =