Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

74
Views
The "RemoveField" function is removing the last element instead of the passed index

Here is the reducer, the RemoveField function is removing the last element from the number of fields array instead of the passed index

const UiReducer = createSlice({
      name: 'ui',
      initialState: {
        name: 'User',
        numberOfFields: [0],
        numberOfSubFields: [0],
      },
      reducers: {
        setName(state, action) {
          state.name = action.payload;
        },
        AddField(state, action) {
          state.numberOfFields = [...state.numberOfFields, action.payload];
        },
        RemoveField(state, action) {
          console.log(action.payload);
          state.numberOfFields.splice(action.payload, 1);
        },
      },
    });
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!