commit 4098fb972e566cd2f718056279a547136f69d10f
parent cc3d80a36dd08339d67e20ae3776f83d7da6c8f9
Author: Sebastian <sebasjm@gmail.com>
Date: Fri, 14 Nov 2025 11:07:49 -0300
this is not nice to show if we are showing pwd
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/packages/web-util/src/hooks/useNotifications.ts b/packages/web-util/src/hooks/useNotifications.ts
@@ -326,7 +326,7 @@ function onUnexpected(
debug: {
error,
stack: error instanceof Error ? error.stack : undefined,
- args: sanitizeFunctionArguments(args),
+ // args: sanitizeFunctionArguments(args),
when: AbsoluteTime.now(),
},
when: AbsoluteTime.now(),
@@ -343,7 +343,7 @@ function onUnexpected(
debug: {
error: String(error),
stack: error instanceof Error ? error.stack : undefined,
- args: sanitizeFunctionArguments(args),
+ // args: sanitizeFunctionArguments(args),
when: AbsoluteTime.now(),
},
when: AbsoluteTime.now(),
@@ -415,7 +415,7 @@ function failWithTitle(
detail: fail.detail,
case: fail.case,
when: AbsoluteTime.now(),
- args: sanitizeFunctionArguments(args),
+ // args: sanitizeFunctionArguments(args),
},
when: AbsoluteTime.now(),
};