Merge branch 'main' into feat/rag-pipeline

This commit is contained in:
twwu
2025-06-06 10:10:53 +08:00
96 changed files with 1775 additions and 331 deletions

View File

@ -1,11 +1,10 @@
import { useState } from 'react'
import { useContext } from 'use-context-selector'
import I18n from '@/context/i18n'
import { X } from '@/app/components/base/icons/src/vender/line/general'
import { NOTICE_I18N } from '@/i18n/language'
import { useLanguage } from '@/app/components/header/account-setting/model-provider-page/hooks'
const MaintenanceNotice = () => {
const { locale } = useContext(I18n)
const locale = useLanguage()
const [showNotice, setShowNotice] = useState(localStorage.getItem('hide-maintenance-notice') !== '1')
const handleJumpNotice = () => {