Make all sources override-eligible to account for subdomains

This commit is contained in:
Imran Remtulla
2023-05-14 13:42:09 -04:00
parent 96c92c8df9
commit e33cc00266
10 changed files with 2 additions and 16 deletions

View File

@@ -321,10 +321,8 @@ class _AddAppPageState extends State<AddAppPage> {
'overrideSource',
defaultValue: HTML().runtimeType.toString(),
[
...sourceProvider.sources
.where((s) => s.overrideEligible)
.map((s) =>
MapEntry(s.runtimeType.toString(), s.name))
...sourceProvider.sources.map(
(s) => MapEntry(s.runtimeType.toString(), s.name))
],
label: tr('overrideSource'))
]