Skip to content

Commit

Permalink
remove side bar addon
Browse files Browse the repository at this point in the history
  • Loading branch information
coulsontl committed May 18, 2024
1 parent dedded6 commit 93370f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,7 @@ const SessionItem = memo<SessionItemProps>(({ id }) => {

const addon = useMemo(
() =>
!showModel ? undefined : (
<Flexbox gap={4} horizontal style={{ flexWrap: 'wrap' }}>
<ModelTag model={model} />
</Flexbox>
),
undefined,
[showModel, model],
);

Expand Down
6 changes: 3 additions & 3 deletions src/features/Conversation/components/InboxWelcome/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ const InboxWelcome = memo(() => {
return (
<Center padding={16} width={'100%'}>
<Flexbox className={styles.container} gap={16} style={{ maxWidth: 800 }} width={'100%'}>
<Flexbox align={'center'} gap={8} horizontal>
{/* <FluentEmoji emoji={'👋'} size={40} type={'anim'} /> */}
{/* <Flexbox align={'center'} gap={8} horizontal>
<FluentEmoji emoji={'👋'} size={40} type={'anim'} />
<h1 className={styles.title}>{greeting}</h1>
</Flexbox>
</Flexbox> */}
<Markdown className={styles.desc} variant={'chat'}>
{t('guide.defaultMessage')}
</Markdown>
Expand Down

0 comments on commit 93370f7

Please sign in to comment.