commit 12 #14

Open
student-32114 wants to merge 2 commits from student-32114/NTO-2025-Android-TeamTask:main into main
Showing only changes of commit 2219cdc3df - Show all commits

View File

@@ -9,7 +9,7 @@ class CheckAndSaveAuthCodeUseCase(
text: String
): Result<Unit> {
return repository.checkAndSave(text).mapCatching { success ->
if (!success) error("Code is incorrect")
if (!success) error("Code is Incorrect")
}
}
}