Skip to content
This repository was archived by the owner on Jul 2, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/salesforce-components/authorization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,14 +165,14 @@ export async function createDefaultScratchOrg(): Promise<string> {
if (failureNotificationWasFound === true) {
if (
await attemptToFindOutputPanelText(
'Salesforce CLI',
'Salesforce Org Management',
'organization has reached its daily scratch org signup limit',
5
)
) {
// This is a known issue...
log('Warning - creating the scratch org failed, but the failure was due to the daily signup limit');
} else if (await attemptToFindOutputPanelText('Salesforce CLI', 'is enabled as a Dev Hub', 5)) {
} else if (await attemptToFindOutputPanelText('Salesforce Org Management', 'is enabled as a Dev Hub', 5)) {
// This is a known issue...
log('Warning - Make sure that the org is enabled as a Dev Hub.');
log(
Expand Down