react-pdf-site icon indicating copy to clipboard operation
react-pdf-site copied to clipboard

Fix variable in the docs

Open JakubAndrysek opened this issue 2 years ago • 0 comments

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>;

JakubAndrysek avatar Feb 18 '23 12:02 JakubAndrysek