Skip to content

Commit

Permalink
Fix className
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess committed Mar 31, 2022
1 parent 692774f commit a7f5001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/GlossaryView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const GlossaryView = ({ content }) => {
<section id="content-core" className="glossary">
{Object.keys(glossaryentries || {})?.map((letter) => (
<div>
<h2 class="letter">{letter}</h2>
<h2 className="letter">{letter}</h2>
{glossaryentries[letter].map((item) => (
<article className="term" key={item['@id']}>
<h3>
Expand Down

0 comments on commit a7f5001

Please sign in to comment.