fix: rename shadowing t param to target in SyndicationDialog

This commit is contained in:
svemagie
2026-04-14 12:50:05 +02:00
parent d40ec614cd
commit adbb2923a9
+1 -1
View File
@@ -21,7 +21,7 @@ export class SyndicationDialog extends Modal {
) { ) {
super(app); super(app);
this.selected = new Set(defaultSelected.filter((uid) => this.selected = new Set(defaultSelected.filter((uid) =>
targets.some((t) => t.uid === uid), targets.some((target) => target.uid === uid),
)); ));
} }