Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
fix: Redundant default args
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Oct 6, 2022
1 parent 74c69c7 commit 4693a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/userscript/source/ui/OptionsSettingsUi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class OptionsSettingsUi extends SettingsSectionUi {
};
return option.trigger
? SettingTriggerUi.make(this._host, name, option as SettingTrigger, iname, handler)
: SettingUi.make(this._host, name, option, iname, handler, false, false, []);
: SettingUi.make(this._host, name, option, iname, handler);
}

setState(state: OptionsSettings): void {
Expand Down

0 comments on commit 4693a1f

Please sign in to comment.