Seems Xcode 13 SwiftUI does not support + operator. For example
Text("Not you? Hit the")
+ Text(" ‘Back’ ").fontWeight(.bold)
+ Text("arrow and use a different email.")
Because of an error of
ambiguous operator declarations found for operator
----------------------------------------
CompileDylibError: Failed to build WarningRedirectToLoginView.swift
Compiling failed: ambiguous operator declarations found for operator
/Users/liang.wang.cm/Documents/Project/Demo-IOS/Demo/View/Login/WarningRedirectToLoginView.swift:23:192: error: ambiguous operator declarations found for operator
Text(__designTimeString("#6206.[1].[2].property.[0].[0].arg[0].value.[0].arg[2].value.[1].arg[0].value.[0].[0]", fallback: "Looks like you already have an account for ")) +
^
Swift.:1:16: note: found this matching operator declaration
infix operator + : AdditionPrecedence
^
Demo_Dev.:1:16: note: found this matching operator declaration
infix operator + : DefaultPrecedence
^