Skip to content

Commit

Permalink
Add quicksy-specific password migration text
Browse files Browse the repository at this point in the history
  • Loading branch information
tmolitor-stud-tu committed Aug 20, 2024
1 parent 0be31b8 commit 385ffd2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Monal/Classes/PasswordMigration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,16 @@ struct PasswordMigration: View {
.resizable()
.frame(width: CGFloat(120), height: CGFloat(120), alignment: .center)
.clipShape(RoundedRectangle(cornerRadius: 10, style: .continuous))
.padding()
.padding()
#if IS_QUICKSY
Text("Your accounts got deactivated, because you restored an iCloud backup of Quicksy. Please reenter your passwords to activate them again.")
.padding()
.padding(.leading, -16.0)
#else
Text("Your accounts got deactivated, because you restored an iCloud backup of Monal. Please reenter your passwords to activate them again.")
.padding()
.padding(.leading, -16.0)
#endif
}
.frame(maxWidth: .infinity)
.background(Color(UIColor.systemBackground))
Expand Down

0 comments on commit 385ffd2

Please sign in to comment.