NachocabN
Denoβ€’3y agoβ€’
3 replies
Nachocab

Fresh error: Could not fetch latest version

Total newbie here. I'm getting "Update check failed: Could not fetch latest version." when I make a change like replacing {a} with {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>;
}
Was this page helpful?