diegomura / react-pdf-site

react-pdf public site https://react-pdf.org
https://react-pdf.org
120 stars 169 forks source link

Fix variable in the docs #105

Open JakubAndrysek opened 1 year ago

JakubAndrysek commented 1 year ago

Incorrect variable calling

https://github.com/diegomura/react-pdf-site/blob/master/docs/on-the-fly.md?plain=1#L96

Please change

  if (instance.error) return <div>Something went wrong: {error}</div>;

To

  if (instance.error) return <div>Something went wrong: {instance.error}</div>;