mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
'use client'
|
|
|
|
import { useAtomValue } from 'jotai'
|
|
import { amplitudeIdentitySyncAtom } from '@/context/amplitude-identity-sync'
|
|
import { zendeskConversationSyncAtom } from '@/context/zendesk-conversation-sync'
|
|
|
|
export function ExternalServiceSync() {
|
|
useAtomValue(zendeskConversationSyncAtom)
|
|
useAtomValue(amplitudeIdentitySyncAtom)
|
|
|
|
return null
|
|
}
|