import { useEffect } from "react"
export default function GlobalTypographyFix() {
useEffect(() => {
const style = document.createElement("style")
style.innerHTML = `
* {
word-break: normal !important;
overflow-wrap: normal !important;
hyphens: none !important;
}
`
document.head.appendChild(style)
}, [])
return null
}