mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
14 lines
218 B
TypeScript
14 lines
218 B
TypeScript
'use client'
|
|
|
|
import {
|
|
useSyncAmplitudeIdentity,
|
|
useSyncZendeskFields,
|
|
} from './app-context-effects'
|
|
|
|
export function AppBootstrapEffects() {
|
|
useSyncZendeskFields()
|
|
useSyncAmplitudeIdentity()
|
|
|
|
return null
|
|
}
|