We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b54798 commit 383581bCopy full SHA for 383581b
site/src/pages/AuditPage/AuditLogRow/AuditLogDiff/AuditLogDiff.tsx
@@ -32,8 +32,6 @@ const getDiffValue = (value: unknown): string => {
32
const isTimeObject = (
33
value: unknown,
34
): value is { Time: string; Valid: boolean } => {
35
- console.log(JSON.stringify(value));
36
-
37
return (
38
value !== null &&
39
typeof value === "object" &&
site/src/testHelpers/entities.ts
@@ -2623,7 +2623,7 @@ export const MockAuditLogRequestOneTimePasscode: TypesGen.AuditLog = {
2623
},
2624
secret: false,
2625
2626
- }
+ },
2627
};
2628
2629
export const MockWorkspaceQuota: TypesGen.WorkspaceQuota = {
0 commit comments