79509235

Date: 2025-03-14 13:44:59
Score: 0.5
Natty:
Report link

If someone is using Reactjs or Nextjs. you can easily fix this safari bug with this one.

useEffect(() => {
    const timeout = setTimeout(() => {
      document.body.style.transform = 'translateZ(0)';
    }, 10);

    return () => clearTimeout(timeout);
  }, []);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maninder Singh