We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9f4b3c commit 0a0c0a2Copy full SHA for 0a0c0a2
src/lib/clients/pwned-passwords.ts
@@ -7,7 +7,10 @@ export class PwnedPasswords extends APIClient {
7
super(new URL("https://api.pwnedpasswords.com"));
8
}
9
10
- protected override async after(response: Response): Promise<Response> {
+ protected override async after(
11
+ _: Request,
12
+ response: Response,
13
+ ): Promise<Response> {
14
if (response.ok) return response;
15
throw new Error(`PwnedPasswords API failed: ${response.statusText}`);
16
src/lib/entities/entity.test.ts
@@ -1,6 +1,6 @@
1
import { describe, expect, test } from "bun:test";
2
3
-import type { CUID } from "app:lib/string-parser";
+import { CUID } from "../parsers/string-parser";
4
import { TableEntity } from "./entity";
5
6
describe(TableEntity.name, () => {
0 commit comments