summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/DebugPanel.tsx
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-25 12:24:45 -0700
committerNate Sesti <sestinj@gmail.com>2023-06-25 12:24:45 -0700
commit54048d3e7bda9c39cc08888b37e0c7dc0716a713 (patch)
tree3ff7254f755e4b3b28a523d652b78dd1f61f868d /extension/react-app/src/components/DebugPanel.tsx
parent82ead52472d4e2a2e291aa5f17ea8522fc11f236 (diff)
parentad462728afc4e6a9e1402aff295010ced9cf2f7a (diff)
downloadsncontinue-54048d3e7bda9c39cc08888b37e0c7dc0716a713.tar.gz
sncontinue-54048d3e7bda9c39cc08888b37e0c7dc0716a713.tar.bz2
sncontinue-54048d3e7bda9c39cc08888b37e0c7dc0716a713.zip
Merge branch 'main' into function-calling
Diffstat (limited to 'extension/react-app/src/components/DebugPanel.tsx')
-rw-r--r--extension/react-app/src/components/DebugPanel.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/react-app/src/components/DebugPanel.tsx b/extension/react-app/src/components/DebugPanel.tsx
index 30f38779..94dbac9e 100644
--- a/extension/react-app/src/components/DebugPanel.tsx
+++ b/extension/react-app/src/components/DebugPanel.tsx
@@ -6,6 +6,7 @@ import {
setApiUrl,
setVscMachineId,
setSessionId,
+ setVscMediaUrl,
} from "../redux/slices/configSlice";
import { setHighlightedCode } from "../redux/slices/miscSlice";
import { updateFileSystem } from "../redux/slices/debugContexSlice";
@@ -37,6 +38,7 @@ function DebugPanel(props: DebugPanelProps) {
dispatch(setApiUrl(event.data.apiUrl));
dispatch(setVscMachineId(event.data.vscMachineId));
dispatch(setSessionId(event.data.sessionId));
+ dispatch(setVscMediaUrl(event.data.vscMediaUrl));
break;
case "highlightedCode":
dispatch(setHighlightedCode(event.data.rangeInFile));