From 8badc7df534aa5527705da4f230a4b1fe57564cb Mon Sep 17 00:00:00 2001 From: David Ragot <35502263+Dav-14@users.noreply.github.com> Date: Mon, 2 Feb 2026 12:09:08 +0100 Subject: [PATCH] fix(cloud): must login with scopes --- pkg/clients.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg/clients.go b/pkg/clients.go index 427eb1f..435cfb6 100644 --- a/pkg/clients.go +++ b/pkg/clients.go @@ -487,7 +487,10 @@ func NewAppDeployClient( profile, organizationID, "deploy", - []string{}, + []string{ + "apps:Read", + "apps:Write", + }, ) if err != nil { return nil, err