mirror of
https://github.com/immich-app/immich.git
synced 2025-02-18 01:24:26 -05:00
Fixed linting issue.
This commit is contained in:
parent
5966737027
commit
b51235690b
1 changed files with 3 additions and 1 deletions
|
@ -53,7 +53,9 @@ class BackupAlbumSelectionPage extends HookConsumerWidget {
|
|||
itemCount: albums.length,
|
||||
itemBuilder: ((context, index) {
|
||||
return AlbumInfoBlock(
|
||||
album: albums[index], mode: AlbumInfoBlockMode.grid);
|
||||
album: albums[index],
|
||||
mode: AlbumInfoBlockMode.grid,
|
||||
);
|
||||
}),
|
||||
)
|
||||
: SliverList(
|
||||
|
|
Loading…
Add table
Reference in a new issue