aboutsummaryrefslogtreecommitdiff
path: root/modern/src/store
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/store')
-rw-r--r--modern/src/store/reports.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/modern/src/store/reports.js b/modern/src/store/reports.js
index 870a0420..9834c8b8 100644
--- a/modern/src/store/reports.js
+++ b/modern/src/store/reports.js
@@ -8,7 +8,6 @@ const { reducer, actions } = createSlice({
period: 'today',
from: moment().subtract(1, 'hour').locale('en').format(moment.HTML5_FMT.DATETIME_LOCAL),
to: moment().locale('en').format(moment.HTML5_FMT.DATETIME_LOCAL),
- button: 'json',
},
reducers: {
updateGroupIds(state, action) {
@@ -23,9 +22,6 @@ const { reducer, actions } = createSlice({
updateTo(state, action) {
state.to = action.payload;
},
- updateButton(state, action) {
- state.button = action.payload;
- },
},
});