Skip to content

Commit

Permalink
style: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rpenido committed Nov 7, 2023
1 parent c3ec732 commit 090287f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/taxonomy/data/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export async function importNewTaxonomy(taxonomyName, taxonomyDescription, file)
formData.append('taxonomy_description', taxonomyDescription);
formData.append('file', file);

const { data } = await getAuthenticatedHttpClient().post(getTaxonomyImportApiUrl(), formData)
const { data } = await getAuthenticatedHttpClient().post(getTaxonomyImportApiUrl(), formData);

return camelCaseObject(data);
}

0 comments on commit 090287f

Please sign in to comment.