Skip to content

Commit 383581b

Browse files
fix: formatting and remove console.log (oops)
1 parent 7b54798 commit 383581b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

site/src/pages/AuditPage/AuditLogRow/AuditLogDiff/AuditLogDiff.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ const getDiffValue = (value: unknown): string => {
3232
const isTimeObject = (
3333
value: unknown,
3434
): value is { Time: string; Valid: boolean } => {
35-
console.log(JSON.stringify(value));
36-
3735
return (
3836
value !== null &&
3937
typeof value === "object" &&

site/src/testHelpers/entities.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2623,7 +2623,7 @@ export const MockAuditLogRequestOneTimePasscode: TypesGen.AuditLog = {
26232623
},
26242624
secret: false,
26252625
},
2626-
}
2626+
},
26272627
};
26282628

26292629
export const MockWorkspaceQuota: TypesGen.WorkspaceQuota = {

0 commit comments

Comments
 (0)