async function load()

in app/launch/src/hooks/useMicronautSdk.js [15:24]


    async function load(apiUrl) {
      try {
        const data = await takeAtLeast(() => sdk.selectOptions(), 700)
        setOptions(smartSetState(data))
      } catch (error) {
        typeof onError === 'function' && onError(error)
      } finally {
        typeof onLoaded === 'function' && onLoaded()
      }
    }