Forgot brackets before calling Trim()

This commit is contained in:
MrR0b3rt
2025-06-23 15:10:33 +02:00
parent 95c38a2b3d
commit 125d2e2b44

View File

@@ -2708,7 +2708,7 @@ function Get-GraphMigrationTableFile
if($global:chkAddCompanyName.IsChecked) if($global:chkAddCompanyName.IsChecked)
{ {
$path = Join-Path $path $global:organization.displayName.Trim() $path = Join-Path $path ($global:organization.displayName).Trim()
} }
$path $path
} }