We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ced8b2d commit 3ae6facCopy full SHA for 3ae6fac
dashboard/src/main/home/infrastructure-dashboard/forms/aws/GrantAWSPermissions.tsx
@@ -307,12 +307,21 @@ const GrantAWSPermissions: React.FC<Props> = ({
307
</Link>
308
</Text>
309
<Spacer y={1} />
310
- <CheckItem
311
- preflightCheck={{
312
- title: "AWS account accessible",
313
- status: isAccountAccessible ? "success" : "pending",
314
- }}
315
- />
+ {isAccountAccessible ? (
+ <CheckItem
+ preflightCheck={{
+ title: "AWS account is accessible by Porter!",
+ status: "success",
+ }}
316
+ />
317
+ ) : (
318
319
320
+ title: "Checking if AWS account is accessible by Porter",
321
+ status: "pending",
322
323
324
+ )}
325
326
<Container row>
327
<Button
0 commit comments