function removeItem()

in website/src/theme/Navbar/Layout/index.js [24:31]


function removeItem(id) {
  var getItem = document.getElementById(id);
  if (getItem !== null) {
    getItem.remove();
  } else {
    throw new Error("id '" + id + "' is not found, cannot remove the item.");
  }
}