-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
126 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,7 +100,16 @@ const PreflightChecks: React.FC<Props> = (props) => { | |
<Spacer y={1} /> | ||
{ | ||
props.error ? | ||
<Error message="Selected region is not available for your account. Please select another region" /> | ||
props.provider === 'AWS' ? | ||
<Error message="Selected region is not available for your account. Please select another region" /> : | ||
<> | ||
<Error message="There is an error with your account. Please ensure billing is enabled or contact Porter Support: [email protected]" /> | ||
<Spacer y={.5} /> | ||
<Link to="https://support.google.com/googleapi/answer/6158867?hl=en" target="_blank"> | ||
Check to see if billing is enabled on your account | ||
</Link> | ||
<Spacer y={.5} /> | ||
</> | ||
: | ||
Object.keys(currentMessageConst).map((checkKey) => ( | ||
<PreflightCheckItem key={checkKey} checkKey={checkKey} /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters