diff --git a/src/Icons/src/Command/ImportIconCommand.php b/src/Icons/src/Command/ImportIconCommand.php index 4ac3a4a2552..d5320e109de 100644 --- a/src/Icons/src/Command/ImportIconCommand.php +++ b/src/Icons/src/Command/ImportIconCommand.php @@ -87,7 +87,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int " ✓ Imported %s:%s (License: %s). Render with: {{ ux_icon('%s') }}", $prefix, $name, - $license['url'], + $license['url'] ?? '#', $license['title'], $fullName, )); diff --git a/src/Icons/src/Command/LockIconsCommand.php b/src/Icons/src/Command/LockIconsCommand.php index 839395c5e7f..6f092348529 100644 --- a/src/Icons/src/Command/LockIconsCommand.php +++ b/src/Icons/src/Command/LockIconsCommand.php @@ -88,7 +88,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int " ✓ Imported %s:%s (License: %s). Render with: {{ ux_icon('%s') }}", $prefix, $name, - $license['url'], + $license['url'] ?? '#', $license['title'], $icon, ));