Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rpenido committed Nov 7, 2023
1 parent 090287f commit 9ec5ec9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/taxonomy/data/thunks.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import { getTaxonomyExportFile, importNewTaxonomy } from './api';
* @param {string} format
* @returns {void}
*/
export const exportTaxonomy = (pk, format) => (
getTaxonomyExportFile(pk, format)
);
export const exportTaxonomy = (pk, format) => {
getTaxonomyExportFile(pk, format);
};

/**
* Import a new taxonomy
Expand Down

0 comments on commit 9ec5ec9

Please sign in to comment.