fix: improve dark mode UI consistency in signin page (#23684)

This commit is contained in:
lyzno1
2025-08-10 17:21:05 +08:00
committed by GitHub
parent a17b7b3d89
commit bb852ef6d2
7 changed files with 90 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
'use client'
import React from 'react'
import { useContext } from 'use-context-selector'
import Select from '@/app/components/base/select/locale'
import LocaleSigninSelect from '@/app/components/base/select/locale-signin'
import Divider from '@/app/components/base/divider'
import { languages } from '@/i18n-config/language'
import type { Locale } from '@/i18n-config'
@@ -33,7 +33,7 @@ const Header = () => {
/>
: <DifyLogo size='large' />}
<div className='flex items-center gap-1'>
<Select
<LocaleSigninSelect
value={locale}
items={languages.filter(item => item.supported)}
onChange={(value) => {