fix wierd typo

This commit is contained in:
CocoByte 2024-07-23 13:50:40 -06:00
parent c33a4b61f5
commit 4666da4df7
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F

View file

@ -43,7 +43,7 @@ document.addEventListener('DOMContentLoaded', function() {
const url = nameToUrlMap[name] || '#';
// Format the contact information
const listItem = document.createElement('li');
listItem.innerH = `<a href="${url}">${name}</a>, ${title}, ${email}, ${phone}`;
listItem.innerHTML = `<a href="${url}">${name}</a>, ${title}, ${email}, ${phone}`;
bulletList.appendChild(listItem);
});
otherContactsSummary += bulletList.outerHTML