File tree 2 files changed +2
-2
lines changed
packages/app/src/cli/utilities/developer-platform-client
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ export class AppManagementClient implements DeveloperPlatformClient {
339
339
if ( ! organizationsResult . currentUserAccount ) return [ ]
340
340
return organizationsResult . currentUserAccount . organizations . nodes . map ( ( org ) => ( {
341
341
id : idFromEncodedGid ( org . id ) ,
342
- businessName : org . name ,
342
+ businessName : ` ${ org . name } (Dev Dashboard)` ,
343
343
source : this . organizationSource ,
344
344
} ) )
345
345
}
Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ export class PartnersClient implements DeveloperPlatformClient {
293
293
const result = await this . requestDoc ( AllOrgs )
294
294
return result . organizations . nodes ! . map ( ( org ) => ( {
295
295
id : org ! . id ,
296
- businessName : org ! . businessName ,
296
+ businessName : ` ${ org ! . businessName } (Partner Dashboard)` ,
297
297
source : this . organizationSource ,
298
298
} ) )
299
299
} catch ( error : unknown ) {
You can’t perform that action at this time.
0 commit comments