default store values for AI features

This commit is contained in:
Martin McKeaveney 2024-10-30 14:17:50 +00:00
parent 53fc45f07e
commit 3f3160a44c
2 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,7 @@
rowActions,
roles,
} from "stores/builder"
import { themeStore, admin, licensing, featureFlags } from "stores/portal"
import { themeStore, admin, featureFlags } from "stores/portal"
import { TableNames } from "constants"
import { Grid } from "@budibase/frontend-core"
import { API } from "api"

View File

@ -4,6 +4,8 @@ import { auth } from "stores/portal"
export const INITIAL_FEATUREFLAG_STATE = {
SQS: false,
DEFAULT_VALUES: false,
BUDIBASE_AI: false,
AI_CUSTOM_CONFIGS: false,
}
export const featureFlags = derived([auth], ([$auth]) => {