fix(front-end): error handling for session
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 1m18s
Build, Test and Deploy / build-and-push (push) Successful in 21s
Build, Test and Deploy / deploy (push) Successful in 8s

This commit is contained in:
2026-02-13 16:08:04 +01:00
parent f165d191be
commit 56fb504062

View File

@@ -75,7 +75,7 @@ export class CalculatorPageComponent implements OnInit {
},
error: (err) => {
console.error('Failed to load session', err);
this.error.set(true);
this.error.set('Failed to load session');
this.loading.set(false);
}
});