Skip to content

Commit

Permalink
Cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
enricoros committed Aug 10, 2023
1 parent 0da8930 commit ea392d2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/apps/chat/components/applayout/ChatMenuItems.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import { shallow } from 'zustand/shallow';

import { ListDivider, ListItem, ListItemDecorator, MenuItem, Switch, Typography } from '@mui/joy';
import { ListDivider, ListItemDecorator, MenuItem, Switch } from '@mui/joy';
import CheckBoxOutlineBlankOutlinedIcon from '@mui/icons-material/CheckBoxOutlineBlankOutlined';
import CheckBoxOutlinedIcon from '@mui/icons-material/CheckBoxOutlined';
import ClearIcon from '@mui/icons-material/Clear';
Expand Down Expand Up @@ -75,11 +75,11 @@ export function ChatMenuItems(props: {

return <>

<ListItem sticky sx={{ '--ListItem-stickyBackground': 'transparent' }}>
<Typography level='body-sm'>
Conversation
</Typography>
</ListItem>
{/*<ListItem>*/}
{/* <Typography level='body-sm'>*/}
{/* Conversation*/}
{/* </Typography>*/}
{/*</ListItem>*/}

<MenuItem onClick={handleSystemMessagesToggle}>
<ListItemDecorator><SettingsSuggestIcon /></ListItemDecorator>
Expand Down
2 changes: 1 addition & 1 deletion src/common/layout/AppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export function AppBar(props: { sx?: SxProps }) {
>
{commonMenuItems}
{!!menuItems && <ListDivider sx={{ mt: 0 }} />}
{menuItems}
{!!menuItems && <Box sx={{ overflowY: 'auto' }}>{menuItems}</Box>}
{!!menuItems && <ListDivider sx={{ mb: 0 }} />}
<AppBarSwitcherItem />
{/*<AppBarSupportItem />*/}
Expand Down

1 comment on commit ea392d2

@vercel
Copy link

@vercel vercel bot commented on ea392d2 Aug 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

big-agi – ./

big-agi-enricoros.vercel.app
get.big-agi.com
big-agi-git-main-enricoros.vercel.app

Please sign in to comment.