mirror of
https://github.com/langgenius/dify.git
synced 2026-06-26 14:51:13 +08:00
13 lines
317 B
TypeScript
13 lines
317 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
|
|
})
|