Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
msveshnikov committed Mar 18, 2024
1 parent 013e9dc commit b52bb46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function App() {
bgcolor="#d4edda"
color="#155724"
padding={1}
style={{ fontFamily: "Chilanka, cursive" }}
style={{ fontFamily: "Chilanka" }}
borderRadius={2}
>
{chat.user}
Expand All @@ -188,7 +188,7 @@ function App() {
padding={1}
marginTop={1}
borderRadius={2}
style={{ fontFamily: "Chilanka, cursive" }}
style={{ fontFamily: "Chilanka" }}
>
{isModelResponding && chat.assistant === null && <CircularProgress size={20} />}
{chat.assistant !== null && <ReactMarkdown>{chat.assistant}</ReactMarkdown>}
Expand Down
2 changes: 1 addition & 1 deletion src/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const theme = (mode) =>
},
},
typography: {
fontFamily: ["Chilanka", "cursive"].join(","),
fontFamily: "Chilanka",
},
});

Expand Down

0 comments on commit b52bb46

Please sign in to comment.