if you try to open any model in the website, you get:
Application error: a client-side exception has occurred (see the browser console for more information).
seem on 8.1 there is not support for the ES2023 method Array.prototype.toReversed() (and possibly other new APIs).
this affects users on Windows 8.1, as well as anyone using Chrome ≤ 109 or equivalent.
console says:
TypeError: r.slice(...).toReversed is not a function
Suggested fixes:
if possible might be interesting to lower the Next.js/rollup target from es2023 to es2020 (or add an explicit polyfill bundle).
or optionally include a small polyfill for toReversed / other ES2023 methods so the site remains compatible with older engines.
These changes would allow you to support a wider user base without affecting performance