Skip to content

Commit

Permalink
fix(CLI Onboarding): Ensure to not show backend notification
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Oct 31, 2022
1 parent f3a1915 commit ba831b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/serverless.js
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ processSpanPromise = (async () => {
telemetryData: { outcome: 'success' },
shouldSendTelemetry: isInteractiveSetup || commands.join(' ') === 'deploy',
});
if (backendNotificationRequest) {
if (!isInteractiveSetup && backendNotificationRequest) {
await processBackendNotificationRequest(backendNotificationRequest);
}
} catch (error) {
Expand Down

0 comments on commit ba831b8

Please sign in to comment.