Total newbie here. I'm getting "Update check failed: Could not fetch latest version." when I make a change like replacing
{a}
{a}
with
{b}
{b}
, for example.
The page is not updating automatically (but it works if I refresh manually). This is my test component. What am I missing? I'm sure it's something super basic.
export default function Testing() { const a = 1; const b = 2; return <div>{a}</div>;}
export default function Testing() { const a = 1; const b = 2; return <div>{a}</div>;}