Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HidyHan committed Apr 23, 2024
1 parent 71fbe1f commit 95ccf4e
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,13 @@ class BundleDetailSideBar extends React.Component {
const showDependencies = !!bundle.dependencies?.value?.length;
const showHostWorksheets = !!bundle.host_worksheets?.value.length;
let bundleStore;
fetchBundleStores(uuid).then((response) => {bundleStore = response; console.log('!!!!!!!!'); console.log(response);});
fetchBundleStores(uuid)
.then((response) => {
const {
data: { attributes: { name: bundleStore } },
} = response;
console.log(bundleStore);
console.log('!!!!!!!!'); console.log(response);});
return (
<div className={classes.sidebar}>
{showPageLink && (
Expand Down

0 comments on commit 95ccf4e

Please sign in to comment.