export function fireAndForget(promise: Promise) { promise.catch((err: unknown) => { console.error("Unhandled async error:", err); }); }