commit 12

This commit is contained in:
ilya
2025-12-12 00:09:38 +03:00
parent 945b9d347d
commit 2219cdc3df

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")
}
}
}