Skip to content

Commit

Permalink
Append NeedleFoundation to extensions generated in DependencyPropsSer…
Browse files Browse the repository at this point in the history
…ializer
  • Loading branch information
alanzeino authored and rudro committed Sep 5, 2024
1 parent 22c350c commit 89188f7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class DependencyPropsSerializer: Serializer {
func serialize() -> String {
if component.isLeaf {
return """
extension \(component.name): Registration {
extension \(component.name): NeedleFoundation.Registration {
public func registerItems() {
\(serialize(component.dependency))
}
Expand All @@ -34,7 +34,7 @@ extension \(component.name): Registration {
"""
} else {
return """
extension \(component.name): Registration {
extension \(component.name): NeedleFoundation.Registration {
public func registerItems() {
\(serialize(component.dependency))
\(serialize(component.properties))
Expand Down

0 comments on commit 89188f7

Please sign in to comment.