mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-23 15:52:16 +00:00
make the list const
This commit is contained in:
parent
35479187ca
commit
c2d19fd17d
2 changed files with 2 additions and 2 deletions
|
|
@ -156,7 +156,7 @@ class _SourceSearchScreenState extends ConsumerState<SourceSearchScreen> {
|
|||
source: widget.source,
|
||||
page: 1,
|
||||
query: widget.query,
|
||||
filterList: [],
|
||||
filterList: const [],
|
||||
).future,
|
||||
);
|
||||
if (mounted) {
|
||||
|
|
|
|||
|
|
@ -173,7 +173,7 @@ class _MigrationSourceSearchScreenState
|
|||
source: widget.source,
|
||||
page: 1,
|
||||
query: widget.query,
|
||||
filterList: [],
|
||||
filterList: const [],
|
||||
).future,
|
||||
);
|
||||
if (mounted) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue