fix(FN-1567): fix plugin loader type and ntfy events test

- Fix ConstructorParameters type in plugin loader
- Update ntfy events test to expect awaiting-user-review event
This commit is contained in:
gsxdsm
2026-04-10 21:52:58 -07:00
parent 34b2af26a7
commit 05229a5c0f
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ async function createPluginLoader(
getFusionDir: () => projectPath + "/.fusion",
on: () => {},
off: () => {},
} as unknown as Parameters<typeof PluginLoader>[0]["taskStore"];
} as unknown as ConstructorParameters<typeof PluginLoader>[0]["taskStore"];
const loader = new PluginLoader({
pluginStore,