From f6528bccf60db97975152027727df94e80028d24 Mon Sep 17 00:00:00 2001 From: Yaros Date: Mon, 8 Dec 2025 16:49:23 +0100 Subject: [PATCH] chore: rename createalbumbutton --- .../widgets/action_buttons/add_action_button.widget.dart | 2 +- .../lib/presentation/widgets/album/album_selector.widget.dart | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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) {