Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
HidyHan committed Apr 30, 2024
1 parent d77b5f7 commit f5486f0
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions frontend/src/components/worksheets/BundleDetail/BundleDetail.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,11 @@ const BundleDetail = ({
setBundleInfo(bundleInfo);
setMetadataErrors([]);

fetchBundleStores(uuid)
.then((response) => {
const bundleStore = response.data[0].attributes.name;
bundleInfo.bundleStore = bundleStore;
setBundleInfo(bundleInfo);
});
fetchBundleStores(uuid).then((response) => {
const bundleStore = response.data[0].attributes.name;
bundleInfo.bundleStore = bundleStore;
setBundleInfo(bundleInfo);
});
},
});

Expand Down

0 comments on commit f5486f0

Please sign in to comment.