Remove async from event handler

This commit is contained in:
Cohee
2025-02-25 21:52:03 +02:00
parent 422517ec93
commit 8b135f9ca3

View File

@ -998,7 +998,7 @@ function parseReasoningFromString(str, { strict = true } = {}) {
}
function registerReasoningAppEvents() {
const eventHandler = async (/** @type {number} */ idx) => {
const eventHandler = (/** @type {number} */ idx) => {
if (!power_user.reasoning.auto_parse) {
return;
}