From e81395bb4cb9ee7ff3b48934ec878b54396bb35d Mon Sep 17 00:00:00 2001 From: DrIOS <58635327+DrIOSX@users.noreply.github.com> Date: Sun, 23 Jun 2024 18:16:19 -0500 Subject: [PATCH] fix: Connect host output --- source/Private/Connect-M365Suite.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/Private/Connect-M365Suite.ps1 b/source/Private/Connect-M365Suite.ps1 index 0f9587d..54ec3cf 100644 --- a/source/Private/Connect-M365Suite.ps1 +++ b/source/Private/Connect-M365Suite.ps1 @@ -101,9 +101,8 @@ function Connect-M365Suite { Write-Host "Connected to the following tenants:" -ForegroundColor Yellow foreach ($tenant in $tenantInfo) { Write-Host "Service: $($tenant.Service)" -ForegroundColor Cyan - Write-Host "Tenant Name: $($tenant.TenantName)" -ForegroundColor Green + Write-Host "Tenant Context: $($tenant.TenantName)`n" -ForegroundColor Green #Write-Host "Tenant ID: $($tenant.TenantID)" - Write-Host "" } $confirmation = Read-Host "Do you want to proceed with these connections? (Y/N)" if ($confirmation -notlike 'Y') {