get: async()

in app/launch/src/state/store.js [152:159]


  get: async ({ get }) => {
    const sdk = get(sdkState)
    const type = get(appTypeState)
    const form = get(starterFormState)
    if (!sdk || !type) return []
    const { features } = await sdk.features({ type, form })
    return features
  },