mirror of
https://github.com/immich-app/immich.git
synced 2025-08-30 23:02:39 -04:00
chore: format
why is autoformat not working
This commit is contained in:
parent
08bab1a03c
commit
9574841e7d
@ -9,11 +9,7 @@ class AlbumFilter {
|
||||
AlbumFilter({required this.mode, this.userId, this.query});
|
||||
|
||||
AlbumFilter copyWith({String? userId, String? query, QuickFilterMode? mode}) {
|
||||
return AlbumFilter(
|
||||
userId: userId ?? this.userId,
|
||||
query: query ?? this.query,
|
||||
mode: mode ?? this.mode,
|
||||
);
|
||||
return AlbumFilter(userId: userId ?? this.userId, query: query ?? this.query, mode: mode ?? this.mode);
|
||||
}
|
||||
}
|
||||
|
||||
@ -24,9 +20,6 @@ class AlbumSort {
|
||||
AlbumSort({required this.mode, this.isReverse = false});
|
||||
|
||||
AlbumSort copyWith({RemoteAlbumSortMode? mode, bool? isReverse}) {
|
||||
return AlbumSort(
|
||||
mode: mode ?? this.mode,
|
||||
isReverse: isReverse ?? this.isReverse,
|
||||
);
|
||||
return AlbumSort(mode: mode ?? this.mode, isReverse: isReverse ?? this.isReverse);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user