Skip to content

Commit 26358b6

Browse files
author
John Doe
committed
refactor: fix lint
1 parent 4a42270 commit 26358b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/utils/src/lib/user-timing-extensibility-api-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,5 +151,5 @@ export function asOptions<T extends MarkerPayload | TrackEntryPayload>(
151151
): {
152152
detail?: WithDevToolsPayload<T>;
153153
} {
154-
return devtools != null ? { detail: { devtools } } : { detail: {} };
154+
return devtools == null ? { detail: {} } : { detail: { devtools } };
155155
}

0 commit comments

Comments
 (0)