Remove async from event handler
| @@ -998,7 +998,7 @@ function parseReasoningFromString(str, { strict = true } = {}) { | |||
| 998 | } | 998 | } |
| 999 | 999 | ||
| 1000 | function registerReasoningAppEvents() { | 1000 | function registerReasoningAppEvents() { |
| 1001 | const eventHandler = async (/** @type {number} */ idx) => { | 1001 | const eventHandler = (/** @type {number} */ idx) => { |
| 1002 | if (!power_user.reasoning.auto_parse) { | 1002 | if (!power_user.reasoning.auto_parse) { |
| 1003 | return; | 1003 | return; |
| 1004 | } | 1004 | } |