Skip to content

Commit b7baa80

Browse files
refactor(components): update text in App
1 parent b1a0a38 commit b7baa80

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/App.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { App } from './App';
55
describe('App', () => {
66
it('renders title', () => {
77
const { lastFrame } = render(<App />);
8-
expect(lastFrame()).toContain('code-ollama');
8+
expect(lastFrame()).toContain('Code Ollama');
99
});
1010

1111
it('renders chat input', () => {

src/components/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Chat } from './Chat';
55
export function App() {
66
return (
77
<Box flexDirection="column">
8-
<Text>🦙 code-ollama</Text>
8+
<Text>Code Ollama</Text>
99
<Chat />
1010
</Box>
1111
);

0 commit comments

Comments
 (0)