Skip to content

Commit 0c4070a

Browse files
committed
Updates
1 parent 8f90cd8 commit 0c4070a

File tree

3 files changed

+2271
-2581
lines changed

3 files changed

+2271
-2581
lines changed

packages/zudoku/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@
248248
"@tanstack/react-query": "5.90.12",
249249
"@types/react": "catalog:",
250250
"@types/react-dom": "catalog:",
251-
"@vitejs/plugin-react": "5.1.2",
251+
"@vitejs/plugin-react": "5.1.3",
252252
"@x0k/json-schema-merge": "1.0.2",
253253
"@zudoku/httpsnippet": "10.0.9",
254254
"@zudoku/react-helmet-async": "2.0.5",
@@ -309,7 +309,7 @@
309309
"unist-util-visit": "5.0.0",
310310
"vaul": "1.1.2",
311311
"vfile": "6.0.3",
312-
"vite": "8.0.0-beta.11",
312+
"vite": "8.0.0-beta.14",
313313
"yaml": "2.8.2",
314314
"yargs": "18.0.0",
315315
"zod": "4.3.6",

packages/zudoku/src/lib/authentication/errors.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,9 @@ import { ZudokuError, type ZudokuErrorOptions } from "../util/invariant.js";
33
export class AuthorizationError extends Error {}
44

55
export class OAuthAuthorizationError extends ZudokuError {
6-
error: OAuth2Error;
6+
error: unknown;
77

8-
constructor(
9-
message: string,
10-
error?: unknown,
11-
options?: ZudokuErrorOptions,
12-
) {
8+
constructor(message: string, error?: unknown, options?: ZudokuErrorOptions) {
139
super(message, options);
1410
this.error = error;
1511
}

0 commit comments

Comments
 (0)