Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelneale committed Nov 24, 2024
1 parent e17dc06 commit 15a6e9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/desktop/src/ChatWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const handleResize = (mode: 'expanded' | 'compact') => {
}
};

const PlaceholderView: React.FC<{ onExpand: () => void }> = ({ onExpand }) => {
const WingView: React.FC<{ onExpand: () => void }> = ({ onExpand }) => {
return (
<div
onClick={onExpand}
Expand Down Expand Up @@ -188,7 +188,7 @@ export default function ChatWindow() {
<Route path="*" element={<Navigate to="/chat/1" replace />} />
</Routes>
) : (
<PlaceholderView onExpand={toggleMode} />
<WingView onExpand={toggleMode} />
)}
</div>
);
Expand Down

0 comments on commit 15a6e9e

Please sign in to comment.