From 9786ff5de43588eab0a77360feec9cd2ebae7d15 Mon Sep 17 00:00:00 2001 From: Jesse Mazzella Date: Fri, 8 Jul 2022 09:20:35 -0700 Subject: [PATCH] [Remote Clock] Fix requestInterceptor typo (#5462) * Fix typo in telemetry request interceptor Co-authored-by: Jamie V Co-authored-by: Andrew Henry --- src/plugins/remoteClock/requestInterceptor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/remoteClock/requestInterceptor.js b/src/plugins/remoteClock/requestInterceptor.js index bb38031bdd..d6cffe7b3a 100644 --- a/src/plugins/remoteClock/requestInterceptor.js +++ b/src/plugins/remoteClock/requestInterceptor.js @@ -35,8 +35,8 @@ function remoteClockRequestInterceptor(openmct, remoteClockIdentifier, waitForBo invoke: async (request) => { const { start, end } = await waitForBounds(); remoteClockLoaded = true; - request[1].start = start; - request[1].end = end; + request.start = start; + request.end = end; return request; }