diff --git a/Sources/OpenSwiftUI/View/Configuration/ViewAlias.swift b/Sources/OpenSwiftUI/View/Configuration/ViewAlias.swift index 34200146b..b5a2adef0 100644 --- a/Sources/OpenSwiftUI/View/Configuration/ViewAlias.swift +++ b/Sources/OpenSwiftUI/View/Configuration/ViewAlias.swift @@ -225,12 +225,12 @@ private struct SourceFormula: AnySourceFormula where Source: View { return .init() } return if source.valueIsNil == nil { - Optional.makeDebuggableView( + Source.makeDebuggableView( view: _GraphValue(Attribute(identifier: attribute)), inputs: inputs ) } else { - Source.makeDebuggableView( + Optional.makeDebuggableView( view: _GraphValue(Attribute(identifier: attribute)), inputs: inputs ) @@ -246,12 +246,12 @@ private struct SourceFormula: AnySourceFormula where Source: View { return .emptyViewList(inputs: inputs) } return if source.valueIsNil == nil { - Optional.makeDebuggableViewList( + Source.makeDebuggableViewList( view: _GraphValue(Attribute(identifier: attribute)), inputs: inputs ) } else { - Source.makeDebuggableViewList( + Optional.makeDebuggableViewList( view: _GraphValue(Attribute(identifier: attribute)), inputs: inputs ) @@ -263,9 +263,9 @@ private struct SourceFormula: AnySourceFormula where Source: View { inputs: _ViewListCountInputs ) -> Int? { if source.valueIsNil == nil { - Optional._viewListCount(inputs: inputs) - } else { Source._viewListCount(inputs: inputs) + } else { + Optional._viewListCount(inputs: inputs) } } }