semaphore-protocol / semaphore

A zero-knowledge protocol for anonymous interactions.
https://semaphore.pse.dev
MIT License
928 stars 211 forks source link

Fix incorrect closing tag README.md #896

Closed defitricks closed 1 week ago

defitricks commented 1 week ago

Description

Fix incorrect closing tag for <tbody> element

I found a small issue with the HTML code where the closing tag for the <tbody> element was missing. Instead of properly closing the <tbody>, another <tbody> tag was used, which could lead to rendering issues.

Issue:

<tbody>

Suggested fix:

The closing tag for the <tbody> element should be placed at the end of the table rows section:

</tbody>

This fix ensures that the <tbody> element is properly closed, preventing potential issues with rendering and maintaining proper HTML structure.

Checklist

cedoor commented 1 week ago

Hi @defitricks this issue has already been solved here: https://github.com/semaphore-protocol/semaphore/pull/894