Skip to content

Commit

Permalink
sam
Browse files Browse the repository at this point in the history
  • Loading branch information
SamDudley committed Feb 10, 2025
1 parent 5d7e25a commit 01c9dd0
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion front_end/src/Reducers/CellCount.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { createSlice } from "@reduxjs/toolkit";

const cellCount = createSlice({
name: "cellCount",
slice: "cellCount",
initialState: {
cellCount: 0,
},
Expand Down
1 change: 0 additions & 1 deletion front_end/src/Reducers/Edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { createSlice } from "@reduxjs/toolkit";

const edit = createSlice({
name: "edit",
slice: "edit",
initialState: {
cellId: null,
},
Expand Down
1 change: 0 additions & 1 deletion front_end/src/Reducers/Error.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { createSlice } from "@reduxjs/toolkit";

const error = createSlice({
name: "error",
slice: "error",
initialState: {
errorMessage: null,
},
Expand Down
1 change: 0 additions & 1 deletion front_end/src/Reducers/Filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { createSlice } from "@reduxjs/toolkit";

const filter = createSlice({
name: "filter",
slice: "edit",
initialState: {
open: false,
},
Expand Down
1 change: 0 additions & 1 deletion front_end/src/Reducers/HiddenCols.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ const saveState = (state) => {

const hiddenCols = createSlice({
name: "hiddenCols",
slice: "hidden",
initialState: loadState(),
reducers: {
TOGGLE_ITEM: (state, action) => {
Expand Down
1 change: 0 additions & 1 deletion front_end/src/Reducers/Selected.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { createSlice } from "@reduxjs/toolkit";

const selected = createSlice({
name: "selected",
slice: "select",
initialState: {
selectedRow: -1,
all: false,
Expand Down

0 comments on commit 01c9dd0

Please sign in to comment.