Skip to content

Commit

Permalink
Fix: balances screen settled up text
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-nirali-s committed Dec 17, 2024
1 parent e4c756d commit 990afe6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Data/Data/Store/UserStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class UserStore: ObservableObject {
LogD("UserStore: \(#function) User fetched successfully by email.")
return fetchedUser
} else {
LogE("UserStore: \(#function) No user found for email: \(email).")
LogE("UserStore: \(#function) No user found for the provided email.")
return nil
}
}
Expand Down
6 changes: 3 additions & 3 deletions Splito/Localization/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
},
" %@ " : {

},
" %@ settled up" : {

},
" ₹ 0.00" : {

Expand All @@ -21,9 +24,6 @@
},
" in total" : {

},
" is settled up" : {

},
" removed " : {
"extractionState" : "manual"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private struct GroupBalanceItemView: View {
Group {
Text(name)
.font(.subTitle2())
+ Text(" is settled up")
+ Text(" \(name == "You" ? "are" : "is") settled up")
.font(.body1())
}
.foregroundStyle(primaryText)
Expand Down
2 changes: 1 addition & 1 deletion Splito/UI/Login/EmailLogin/EmailLoginViewModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class EmailLoginViewModel: BaseViewModel, ObservableObject {
} else {
LogE("EmailLoginViewModel: \(#function) No user found with this email.")
}

FirebaseAuth.Auth.auth().signIn(withEmail: email, password: password) { [weak self] result, error in
self?.isLoginInProgress = false
self?.handleAuthResponse(result: result, error: error, isLogin: true)
Expand Down

0 comments on commit 990afe6

Please sign in to comment.