in app/launch/src/state/store.js [164:171]
get: async ({ get }) => {
const sdk = get(sdkState)
const type = get(appTypeState)
const form = get(starterFormState)
if (!sdk || !form.type) return []
const { features } = await sdk.defaultIncludedFeatures({type, form})
return features
},