diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
commit | 086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch) | |
tree | a4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /devtools/client/responsive/reducers | |
parent | Adding debian version 124.0.1-1. (diff) | |
download | firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/responsive/reducers')
-rw-r--r-- | devtools/client/responsive/reducers/devices.js | 6 | ||||
-rw-r--r-- | devtools/client/responsive/reducers/screenshot.js | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/devtools/client/responsive/reducers/devices.js b/devtools/client/responsive/reducers/devices.js index 98f0602175..960ecc336a 100644 --- a/devtools/client/responsive/reducers/devices.js +++ b/devtools/client/responsive/reducers/devices.js @@ -70,21 +70,21 @@ const reducers = { }; }, - [LOAD_DEVICE_LIST_START](devices, action) { + [LOAD_DEVICE_LIST_START](devices) { return { ...devices, listState: Types.loadableState.LOADING, }; }, - [LOAD_DEVICE_LIST_ERROR](devices, action) { + [LOAD_DEVICE_LIST_ERROR](devices) { return { ...devices, listState: Types.loadableState.ERROR, }; }, - [LOAD_DEVICE_LIST_END](devices, action) { + [LOAD_DEVICE_LIST_END](devices) { return { ...devices, listState: Types.loadableState.LOADED, diff --git a/devtools/client/responsive/reducers/screenshot.js b/devtools/client/responsive/reducers/screenshot.js index 67f26f1f9a..dcf962a9eb 100644 --- a/devtools/client/responsive/reducers/screenshot.js +++ b/devtools/client/responsive/reducers/screenshot.js @@ -14,14 +14,14 @@ const INITIAL_SCREENSHOT = { }; const reducers = { - [TAKE_SCREENSHOT_END](screenshot, action) { + [TAKE_SCREENSHOT_END](screenshot) { return { ...screenshot, isCapturing: false, }; }, - [TAKE_SCREENSHOT_START](screenshot, action) { + [TAKE_SCREENSHOT_START](screenshot) { return { ...screenshot, isCapturing: true, |