mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 03:58:31 +08:00
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
'use client'
|
|
|
|
import { atom } from 'jotai'
|
|
import { nextParamsAtom } from '@/app/components/next-route-state/atoms'
|
|
|
|
export const deploymentRouteAppInstanceIdAtom = atom((get) => {
|
|
const appInstanceId = get(nextParamsAtom).appInstanceId
|
|
|
|
return typeof appInstanceId === 'string' ? appInstanceId : undefined
|
|
})
|