mirror of
https://github.com/langgenius/dify.git
synced 2026-08-31 13:06:11 +08:00
15 lines
363 B
TypeScript
15 lines
363 B
TypeScript
'use client'
|
|
import { useTranslation } from 'react-i18next'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
import { useOAuthCallback } from '@/hooks/use-oauth'
|
|
|
|
const OAuthCallback = () => {
|
|
const { t } = useTranslation()
|
|
useDocumentTitle(t(($) => $.signBtn, { ns: 'login' }))
|
|
useOAuthCallback()
|
|
|
|
return <div />
|
|
}
|
|
|
|
export default OAuthCallback
|