Skip to content

Commit 21f643f

Browse files
🐛 fix LogsEventDomainContext fallback to undefined instead of never (#4264)
1 parent b74ef2e commit 21f643f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/logs/src/domainContext.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export type LogsEventDomainContext<T extends ErrorSource = any> = T extends type
66
? ConsoleLogsEventDomainContext
77
: T extends typeof ErrorSource.LOGGER
88
? LoggerLogsEventDomainContext
9-
: never
9+
: undefined
1010

1111
export interface NetworkLogsEventDomainContext {
1212
isAborted: boolean

0 commit comments

Comments
 (0)