refactor(cli): update return value in registry helper
This commit updates the registry helper in the CLI package. It now returns the full component name from the registry, instead of only returning the last part of the component's path.
This commit is contained in:
parent
7a82c284fc
commit
8a8508c8fb
@ -28,5 +28,5 @@ export async function getComponentRealname(
|
||||
registry: Registry,
|
||||
componentName: keyof Registry['components'],
|
||||
): Promise<string> {
|
||||
return registry.components[componentName].split('/').pop() ?? ''
|
||||
return registry.components[componentName]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user