We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1a0a38 commit b7baa80Copy full SHA for b7baa80
2 files changed
src/components/App.test.tsx
@@ -5,7 +5,7 @@ import { App } from './App';
5
describe('App', () => {
6
it('renders title', () => {
7
const { lastFrame } = render(<App />);
8
- expect(lastFrame()).toContain('code-ollama');
+ expect(lastFrame()).toContain('Code Ollama');
9
});
10
11
it('renders chat input', () => {
src/components/App.tsx
@@ -5,7 +5,7 @@ import { Chat } from './Chat';
export function App() {
return (
<Box flexDirection="column">
- <Text>🦙 code-ollama</Text>
+ <Text>Code Ollama</Text>
<Chat />
</Box>
);
0 commit comments