@@ -114,7 +114,7 @@ struct PromptToCodePanelContent: View {
114114 Color . red,
115115 in: RoundedRectangle ( cornerRadius: 8 , style: . continuous)
116116 )
117- . scaleEffect ( x: - 1 , y: - 1 , anchor: . center)
117+ . scaleEffect ( x: 1 , y: - 1 , anchor: . center)
118118 }
119119
120120 if !provider. description. isEmpty {
@@ -125,7 +125,7 @@ struct PromptToCodePanelContent: View {
125125 } )
126126 . padding ( )
127127 . frame ( maxWidth: . infinity)
128- . scaleEffect ( x: - 1 , y: - 1 , anchor: . center)
128+ . scaleEffect ( x: 1 , y: - 1 , anchor: . center)
129129 }
130130
131131 if provider. code. isEmpty {
@@ -138,7 +138,7 @@ struct PromptToCodePanelContent: View {
138138 . padding ( )
139139 . multilineTextAlignment ( . center)
140140 . frame ( maxWidth: . infinity)
141- . scaleEffect ( x: - 1 , y: - 1 , anchor: . center)
141+ . scaleEffect ( x: 1 , y: - 1 , anchor: . center)
142142 } else {
143143 CodeBlock (
144144 code: provider. code,
@@ -149,18 +149,17 @@ struct PromptToCodePanelContent: View {
149149 fontSize: fontSize
150150 )
151151 . frame ( maxWidth: . infinity)
152- . scaleEffect ( x: - 1 , y: - 1 , anchor: . center)
152+ . scaleEffect ( x: 1 , y: - 1 , anchor: . center)
153153 }
154154
155155 if let name = provider. name {
156156 Text ( name)
157157 . font ( . footnote)
158158 . foregroundColor ( . secondary)
159159 . padding ( . top, 12 )
160- . scaleEffect ( x: - 1 , y: - 1 , anchor: . center)
160+ . scaleEffect ( x: 1 , y: - 1 , anchor: . center)
161161 }
162162 }
163- . scaleEffect ( x: - 1 , y: 1 , anchor: . center)
164163 }
165164 . scaleEffect ( x: 1 , y: - 1 , anchor: . center)
166165 }
0 commit comments