diff --git a/.github/workflows/deploy-renderer-without-publish.yml b/.github/workflows/deploy-renderer-without-publish.yml index e62139d0..f8056596 100644 --- a/.github/workflows/deploy-renderer-without-publish.yml +++ b/.github/workflows/deploy-renderer-without-publish.yml @@ -28,9 +28,10 @@ jobs: npm run build -- --sdkversion=${{ steps.package-version.outputs.current-version }}-test npm run build:renderer -- --sdkversion=${{ steps.package-version.outputs.current-version }}-test - - uses: cloudflare/wrangler-action@2.0.0 + - uses: cloudflare/wrangler-action@v3 name: Publish Release with: + wranglerVersion: "2.0.0" apiToken: ${{ secrets.CF_API_TOKEN }} accountId: ${{ secrets.CF_ACCOUNT_ID }} workingDirectory: './build/hosted-renderer' diff --git a/package.json b/package.json index e987d271..b1ac4999 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@api.stream/studio-kit", - "version": "3.0.48", + "version": "3.0.49", "description": "Client SDK for building studio experiences with API.stream", "license": "MIT", "private": false, @@ -100,4 +100,4 @@ "env": { "NODE_ENV": "prod" } -} +} \ No newline at end of file diff --git a/src/core/requests.ts b/src/core/requests.ts index e4f3abd1..d2a9a03e 100644 --- a/src/core/requests.ts +++ b/src/core/requests.ts @@ -150,7 +150,7 @@ export const loadUser = async ( // Take the Vapi Project and hydrate it with Compositor and Lapi project details const projects = await Promise.all( collection.projects - .filter((p) => Boolean(p.metadata?.layoutId)) + .filter((p) => p.metadata?.layoutId && p.metadata?.type === 'sceneless') .map((project) => hydrateProject(project, 'ROLE_HOST' as Role, size, options?.updateLayoutOnly)), )