diff options
Diffstat (limited to 'devtools/client/webconsole/actions/input.js')
-rw-r--r-- | devtools/client/webconsole/actions/input.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/client/webconsole/actions/input.js b/devtools/client/webconsole/actions/input.js index f7dba1cbd8..f93d401346 100644 --- a/devtools/client/webconsole/actions/input.js +++ b/devtools/client/webconsole/actions/input.js @@ -83,7 +83,7 @@ async function getMappedExpression(hud, expression) { } function evaluateExpression(expression, from = "input") { - return async ({ dispatch, toolbox, webConsoleUI, hud, commands }) => { + return async ({ dispatch, webConsoleUI, hud, commands }) => { if (!expression) { expression = hud.getInputSelection() || hud.getInputValue(); } |