Skip to content

Commit d39021f

Browse files
fix: minor fix to remove bracket
1 parent fb95f5f commit d39021f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/AboutUs/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export default function AboutSection() {
107107
const fragments = words.map((word) => {
108108
const span = document.createElement("span");
109109
span.className = "inline-block letter-span highlighted";
110-
span.innerHTML = `${word}} `;
110+
span.innerHTML = `${word} `;
111111
return span;
112112
});
113113
node.replaceWith(...fragments);

0 commit comments

Comments
 (0)