visual changes

This commit is contained in:
2026-04-30 14:51:32 +04:00
parent d6e1b30554
commit d9b0c221f1
16 changed files with 266 additions and 50 deletions

View File

@@ -63,11 +63,11 @@ export class FastcheckPage {
pay(): void {
if (!this.fastcheckNumber().trim()) {
this.error.set('Введите номер Фастчека');
this.error.set('Введите номер');
return;
}
if (!this.fastcheckCode().trim()) {
this.error.set('Введите код Фастчека');
this.error.set('Введите код');
return;
}
this.error.set('');
@@ -148,7 +148,7 @@ export class FastcheckPage {
},
error: () => {
this.popupLoading.set(false);
this.popupError.set('Не удалось принять Фастчек.');
this.popupError.set('Не удалось принять платёж.');
}
});
}