mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Update dependency comlink to v4.4.0 (#62628)
* Update dependency comlink to v4.4.0 * explicitly mark the error as unknown --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
This commit is contained in:
@@ -14,7 +14,7 @@ export const remoteObservableAsObservable = <T>(remoteObs: comlink.RemoteObject<
|
||||
comlink.proxy((nextValueInRemoteObs: T) => {
|
||||
subscriber.next(nextValueInRemoteObs);
|
||||
}),
|
||||
comlink.proxy((err) => {
|
||||
comlink.proxy((err: unknown) => {
|
||||
subscriber.error(err);
|
||||
}),
|
||||
comlink.proxy(() => {
|
||||
|
||||
Reference in New Issue
Block a user