Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
fix cra (#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ornella452 authored Oct 23, 2024
1 parent 51373a9 commit 1e5ff19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/services/cra.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export const craService = {
const apiUrlRoot = import.meta.env.VITE_APP_API;

function createCra(cra) {
const { ...craObj } = cra;
// eslint-disable-next-line no-unused-vars
const { idStructure, ...craObj } = cra;

const requestOptions = {
method: 'POST',
Expand Down

0 comments on commit 1e5ff19

Please sign in to comment.