mirror of
https://github.com/langgenius/dify.git
synced 2026-09-19 02:07:44 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
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
|
|
})
|