When you have a Form (Remix) whith a <button type="submit" disabled={disabled}>, Firefox results in hydratation error
Prop 'disabled' did not match. Server: "null" Client: "true".
To solve this issue, just add autoComplete="off" on your Form
Doesn't work with Firefox (103.0.2)
const [isDisabled, setIsDisabled] = useState(false);