rizanb.hashnode.devAvoid the Browser Translation Bug in React 16+I recently stumbled upon this Sentry error in production: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node. The React app was working perfectly fine, no failed tests, no issues. A couple of hours in, I di...Dec 22, 2025·2 min read
rizanb.hashnode.devCentering a div with tailwind - grid vs flex boxIf you’ve been using tailwind for a while, centering a div is easy. There are two easy ways to center a div: grid place-items-center and flex items-center justify-center. But do you actually know when to use one over the other? Takeaway: "centering O...Dec 18, 2025·2 min read