diff options
| -rw-r--r-- | src/modules/launcher/actions.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/launcher/actions.tsx b/src/modules/launcher/actions.tsx index 6b5df52..bdc99db 100644 --- a/src/modules/launcher/actions.tsx +++ b/src/modules/launcher/actions.tsx @@ -407,7 +407,7 @@ export default class Actions extends Widget.Box implements LauncherContent { const list = Object.keys(transparencyActions); for (const { target } of fuzzysort.go(args[1], list, { all: true })) - this.#content.add(<Transparency amount={target} />); + this.#content.add(<Transparency amount={target as keyof typeof transparencyActions} />); } else { const list = this.#list.filter( a => this.#map[a].available?.() ?? !config.disabledActions.get().includes(a) |