refactor: FaiError -> ChainError (SDK stub rename lockstep)
Some checks failed
Security / Security check (push) Failing after 1s

Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
flemming-it 2026-07-11 23:14:33 +02:00
parent bb606a8b23
commit 7a38cd58aa
13 changed files with 30 additions and 30 deletions

View file

@ -114,7 +114,7 @@ class _ChainStoresDialogState extends State<ChainStoresDialog> {
_reload();
} catch (e) {
if (mounted) {
showFaiErrorSnack(context, 'store.add', e,
showChainErrorSnack(context, 'store.add', e,
title: AppLocalizations.of(context)!.storesManagerAddFailed);
}
} finally {
@ -131,7 +131,7 @@ class _ChainStoresDialogState extends State<ChainStoresDialog> {
_reload();
} catch (e) {
if (mounted) {
showFaiErrorSnack(context, 'store.remove', e,
showChainErrorSnack(context, 'store.remove', e,
title: AppLocalizations.of(context)!.storesManagerRemoveFailed);
}
}