You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

use-is-chat-mode.ts 205B

1234567
  1. import { useStore as useAppStore } from '@/app/components/app/store'
  2. export const useIsChatMode = () => {
  3. const appDetail = useAppStore(s => s.appDetail)
  4. return appDetail?.mode === 'advanced-chat'
  5. }