Skip to content

Commit bb2b150

Browse files
committed
Fix UI spacing
1 parent 002a137 commit bb2b150

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Commands/Connect.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
8383
'Please name this AWS account in Bref Cloud.',
8484
]);
8585

86-
$question = new Question('Display name:');
86+
$question = new Question('Display name: ');
8787
$question->setValidator(function (string $answer) use ($existingAccounts): string {
8888
// Check if the name is already taken
8989
foreach ($existingAccounts as $account) {

src/Commands/Login.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
3636
]);
3737
OpenUrl::open($url);
3838

39-
$question = new Question('Bref Cloud token:');
39+
$question = new Question('Bref Cloud token: ');
4040
$question->setHidden(true)
4141
->setHiddenFallback(false)
4242
->setTrimmable(true);

0 commit comments

Comments
 (0)