fixing problem with not showing stale state

This commit is contained in:
talksik
2021-12-23 16:50:32 -08:00
parent 2eea2d5ba6
commit 45437a88e3
2 changed files with 2 additions and 1 deletions
@@ -56,7 +56,7 @@ struct InnerCircleView: View {
} }
.padding() .padding()
} }
else if self.authSessionStore.friendsArr.count < 0 { else if self.authSessionStore.friendsArr.count == 0 {
VStack(alignment: .center) { VStack(alignment: .center) {
Image("undraw_fall_is_coming_yl-0-x") Image("undraw_fall_is_coming_yl-0-x")
.renderingMode(.original) .renderingMode(.original)
@@ -48,6 +48,7 @@ struct PhoneCodeVerificationView: View {
.padding(.vertical) .padding(.vertical)
.keyboardType(.phonePad) .keyboardType(.phonePad)
.focused(self.$focusedInputField) .focused(self.$focusedInputField)
Text("Please allow up to 30 seconds to receive your code. Navigate back and re-enter phone number if you do not get the message.") Text("Please allow up to 30 seconds to receive your code. Navigate back and re-enter phone number if you do not get the message.")
.font(.caption) .font(.caption)
.foregroundColor(NirvanaColor.teal) .foregroundColor(NirvanaColor.teal)