Skip to content

Commit 61c42ad

Browse files
committed
format all files that were not passing ci
1 parent 675fa66 commit 61c42ad

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ To get the development environment running locally:
8686
## Contributing
8787

8888
Contributions are **greatly appreciated**. First time contributers are encouraged to contribute to issues labeled "easy".
89-
Note: Please do not just "vibe code" a PR to and issue. Use AI, but make sure to write intentionally designed code. We only accept heavily optimized code. This may mean multiple iterations of review before your PR gets merged.
89+
Note: Please do not just "vibe code" a PR to and issue. Use AI, but make sure to write intentionally designed code. We only accept heavily optimized code. This may mean multiple iterations of review before your PR gets merged.
9090

9191
1. Fork the Project
9292
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)

features/popup/popup-app.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import {
2-
observeAuditHistory,
3-
} from "@/features/audit/audit-storage";
1+
import { observeAuditHistory } from "@/features/audit/audit-storage";
42
import type { AuditHistoryData, AuditHistoryEntry } from "@/domain/audit";
53
import {
64
sendRuntimeMessage,

features/session/session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export function recordLoginStateFromPage(document: Document): void {
7373
export function isLoginPage(document: Document): boolean {
7474
return Boolean(
7575
document.querySelector('form[action*="login"]') ||
76-
document.querySelector('input[type="password"]'),
76+
document.querySelector('input[type="password"]'),
7777
);
7878
}
7979

tests/audit/audit-storage.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,9 @@ test("reports an initial audit history read failure", async () => {
7777
);
7878
const errors: unknown[] = [];
7979

80-
const unobserve = observeAuditHistory(() => {}, (error) =>
81-
errors.push(error),
80+
const unobserve = observeAuditHistory(
81+
() => {},
82+
(error) => errors.push(error),
8283
);
8384
await Bun.sleep(0);
8485
unobserve();

0 commit comments

Comments
 (0)