Skip to content

Commit

Permalink
Fixing lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
davenichols-DHLS committed Aug 12, 2024
1 parent fee4863 commit 958893c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blocks/footer/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default async function decorate(block) {
{ href: 'https://www.aldevron.com/?utm_source=aldevron_website&utm_medium=referral&utm_content=footer', src: 'https://lifesciences.danaher.com/media_142f5f1953984f372a389eba53a44db24cebcd3a8.svg?width=2000&format=webply&optimize=medium', alt: 'Aldevron' },
{ href: 'https://www.aldevron.com/?utm_source=aldevron_website&utm_medium=referral&utm_content=footer', src: 'https://lifesciences.danaher.com/media_1dfadbb273bd8868ca3659447071c5aeee1525cbf.svg?width=2000&format=webply&optimize=medium', alt: 'IDT' },
];
items.forEach(item => {
items.forEach((item) => {
const liElement = document.createElement('li');
const aElement = document.createElement('a');
aElement.href = item.href;
Expand All @@ -101,7 +101,7 @@ export default async function decorate(block) {
liElement.appendChild(aElement);
ulElement.appendChild(liElement);
});

const footerContainer = document.createElement('div');
footerContainer.classList.add('footer-opco');
footerContainer.appendChild(ulElement);
Expand Down

0 comments on commit 958893c

Please sign in to comment.