Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
320 changes: 0 additions & 320 deletions ui/desktop/src/components/FlappyGoose.tsx

This file was deleted.

7 changes: 0 additions & 7 deletions ui/desktop/src/components/hub.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
* the Hub creates a brand new chat session in the Pair view.
*/

import { useState } from 'react';
import FlappyGoose from './FlappyGoose';

import { SessionInsights } from './sessions/SessionsInsights';
import ChatInput from './ChatInput';
import { generateSessionId } from '../sessions';
Expand All @@ -47,8 +44,6 @@ export default function Hub({
setView: (view: View, viewOptions?: ViewOptions) => void;
setIsGoosehintsModalOpen: (isOpen: boolean) => void;
}) {
const [showGame, setShowGame] = useState(false);

// Handle chat input submission - create new chat and navigate to pair
const handleSubmit = (e: React.FormEvent) => {
const customEvent = e as unknown as CustomEvent;
Expand Down Expand Up @@ -106,8 +101,6 @@ export default function Hub({
sessionCosts={undefined}
setIsGoosehintsModalOpen={setIsGoosehintsModalOpen}
/>

{showGame && <FlappyGoose onClose={() => setShowGame(false)} />}
</div>
</ChatContextManagerProvider>
);
Expand Down
Loading