Skip to content

Commit d8bdf33

Browse files
fix lint
1 parent 5bfc7b8 commit d8bdf33

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

sdk/platform/getEventSource/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ function getEventSource() {
1616
return __isCustom ? __eventSource : require('./eventsource.js');
1717
} catch (error) {
1818
console.error(error);
19+
// eslint-disable-next-line no-undef
1920
return typeof EventSource === 'function' ? EventSource : undefined;
2021
}
2122
}

sdk/platform/getOptions/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function getOptions(settings) {
1818
if (find(settings.urls, url => !url.startsWith('https:'))) return;
1919

2020
return {
21-
agent
21+
agent,
2222
};
2323
}
2424

0 commit comments

Comments
 (0)