diff --git a/mobile/lib/presentation/widgets/action_buttons/add_action_button.widget.dart b/mobile/lib/presentation/widgets/action_buttons/add_action_button.widget.dart index b6c98b440d..bfd8c13415 100644 --- a/mobile/lib/presentation/widgets/action_buttons/add_action_button.widget.dart +++ b/mobile/lib/presentation/widgets/action_buttons/add_action_button.widget.dart @@ -108,7 +108,7 @@ class _AddActionButtonState extends ConsumerState { } final List slivers = [ - const CreateAddSinglAlbumHeader(), + const CreateAlbumButton(), AlbumSelector(onAlbumSelected: (album) => _addCurrentAssetToAlbum(album)), ]; diff --git a/mobile/lib/presentation/widgets/album/album_selector.widget.dart b/mobile/lib/presentation/widgets/album/album_selector.widget.dart index 8f94574893..8a3de2509c 100644 --- a/mobile/lib/presentation/widgets/album/album_selector.widget.dart +++ b/mobile/lib/presentation/widgets/album/album_selector.widget.dart @@ -769,8 +769,8 @@ class AddToAlbumHeader extends ConsumerWidget { } } -class CreateAddSinglAlbumHeader extends ConsumerWidget { - const CreateAddSinglAlbumHeader({super.key}); +class CreateAlbumButton extends ConsumerWidget { + const CreateAlbumButton({super.key}); @override Widget build(BuildContext context, WidgetRef ref) {