Remove async from event handler

8b135f9ca3c7d305662a844afc0effbcc28916a3

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Showing whitespace changes
public/scripts/reasoning.js+1 -1
@@ -998,7 +998,7 @@ function parseReasoningFromString(str, { strict = true } = {}) {
998}998}
999999
1000function registerReasoningAppEvents() {1000function 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 }