chore: instruction and vars to readonly

This commit is contained in:
Joel
2025-10-14 17:28:49 +08:00
parent 67bb14d3ee
commit 1539d86f7d
3 changed files with 9 additions and 1 deletions

View File

@ -29,6 +29,7 @@ import type { Collection } from '@/app/components/tools/types'
import { noop } from 'lodash-es'
type IDebugConfiguration = {
readonly?: boolean
appId: string
isAPIKeySet: boolean
isTrailFinished: boolean
@ -108,6 +109,7 @@ type IDebugConfiguration = {
}
const DebugConfigurationContext = createContext<IDebugConfiguration>({
readonly: false,
appId: '',
isAPIKeySet: false,
isTrailFinished: false,