mirror of
https://github.com/NovaOSS/nova-betterchat.git
synced 2024-11-25 22:43:59 +01:00
parent
c8f77bd23a
commit
04ef5efc24
|
@ -33,6 +33,7 @@ const ChatContent = () => {
|
||||||
: 0
|
: 0
|
||||||
);
|
);
|
||||||
const generating = useStore.getState().generating;
|
const generating = useStore.getState().generating;
|
||||||
|
const hideSideMenu = useStore((state) => state.hideSideMenu);
|
||||||
|
|
||||||
const saveRef = useRef<HTMLDivElement>(null);
|
const saveRef = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
|
@ -92,13 +93,19 @@ const ChatContent = () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<div className='mt-4 flex gap-4 flex-wrap justify-center'>
|
<div
|
||||||
|
className={`mt-4 w-full m-auto ${
|
||||||
|
hideSideMenu
|
||||||
|
? 'md:max-w-5xl lg:max-w-5xl xl:max-w-6xl'
|
||||||
|
: 'md:max-w-3xl lg:max-w-3xl xl:max-w-4xl'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
{useStore.getState().generating || (
|
{useStore.getState().generating || (
|
||||||
<>
|
<div className='md:w-[calc(100%-50px)] flex gap-4 flex-wrap justify-center'>
|
||||||
<DownloadChat saveRef={saveRef} />
|
<DownloadChat saveRef={saveRef} />
|
||||||
<ShareGPT />
|
<ShareGPT />
|
||||||
<CloneChat />
|
<CloneChat />
|
||||||
</>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className='w-full h-36'></div>
|
<div className='w-full h-36'></div>
|
||||||
|
|
Loading…
Reference in a new issue