Merged in fix/reduce-amount-of-section-elements (pull request #1883)

fix: reduce the amount of section elements being used since most have no headers connected to them

Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Christian Andolf
2025-04-29 07:03:37 +00:00
4 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
import styles from "./container.module.css"
export default function ListContainer({ children }: React.PropsWithChildren) {
return <section className={styles.container}>{children}</section>
return <div className={styles.container}>{children}</div>
}