refactor: FaiError -> ChainError (SDK stub rename lockstep)

Signed-off-by: flemming-it <sf@flemming.it>
This commit is contained in:
flemming-it 2026-07-11 23:14:34 +02:00
parent 42f271679c
commit 9196251e00
3 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
/// Minimal stand-ins for the FaiEmptyState + FaiErrorBox
/// Minimal stand-ins for the FaiEmptyState + ChainErrorBox
/// widgets Studio ships. The editor brings its own so the
/// package compiles standalone host-styled variants are
/// a future plugin-API extension.
@ -53,11 +53,11 @@ class FaiEmptyState extends StatelessWidget {
}
}
class FaiErrorBox extends StatelessWidget {
class ChainErrorBox extends StatelessWidget {
final Object? error;
final bool isError;
final double? maxHeight;
const FaiErrorBox({
const ChainErrorBox({
super.key,
required this.error,
this.isError = true,