From a62eb44a0f7a35e7df7c2ee3957c8d46a3385e1a Mon Sep 17 00:00:00 2001 From: Matt Venables Date: Tue, 9 Jun 2026 21:33:43 -0400 Subject: [PATCH] fix(ack-pay): format errors.ts to satisfy oxfmt check The constructor signature exceeded the print width; wrap parameters so `oxfmt --check` passes and unblock CI on main. Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/ack-pay/src/errors.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/ack-pay/src/errors.ts b/packages/ack-pay/src/errors.ts index 5397cce..662cf29 100644 --- a/packages/ack-pay/src/errors.ts +++ b/packages/ack-pay/src/errors.ts @@ -1,5 +1,8 @@ export class InvalidPaymentRequestTokenError extends Error { - constructor(message = "Invalid payment request token", options?: ErrorOptions) { + constructor( + message = "Invalid payment request token", + options?: ErrorOptions, + ) { super(message, options) this.name = "InvalidPaymentRequestTokenError" }