This commit is contained in:
かっこかり 2025-10-02 10:08:53 +09:00 committed by GitHub
commit d02a46d10f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ export function createAiScriptEnv(opts: { storageKey: string, token?: string })
});
return confirm.canceled ? values.FALSE : values.TRUE;
}),
'Mk:toast': values.FN_NATIVE(async ([text]) => {
'Mk:toast': values.FN_NATIVE(([text]) => {
utils.assertString(text);
os.toast(text.value);
return values.NULL;