Skip to content

Commit

Permalink
fix small compile errors for prod
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico Ramirez committed Nov 19, 2023
1 parent d22ae49 commit 482a81a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/apps/chat/components/message/RenderSchema.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const RenderSchema = ({ schema }: { schema: Schema }) => {
<Box className={`schema-body ${theme.palette.mode === 'dark' ? 'schema-body-dark' : 'schema-body-light'}`}>
<Typography level="title-md">Failed to fetch schema</Typography>
<Typography level="body-sm">
LLM might have requested an schema that doesn't exist or was deleted
LLM might have requested a schema that doesn&apos;t exist or was deleted
</Typography>
</Box>
);
Expand Down
2 changes: 1 addition & 1 deletion src/apps/settings-modal/ShortcutsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ export const ShortcutsModal = (props: { onClose: () => void }) =>
open title='Desktop Shortcuts'
onClose={props.onClose}
>
<ChatMessage message={shortcutsMessage} hideAvatars noBottomBorder sx={{ p: 0, m: 0 }} />
<ChatMessage message={shortcutsMessage} hideAvatars noBottomBorder sx={{ p: 0, m: 0 }} setBigQueryResult={() => null} />
</GoodModal>;

0 comments on commit 482a81a

Please sign in to comment.