I was trying to load a local SVG file into my html but it was not successful ``` html <head> <script src="svg-inject.js"></script> </head> <body> <img src="earth.svg" onload="SVGInject(this)"> </body> ``` I opened the console and found the following warning <img width="486" alt="SQLInject_issue" src="https://user-images.githubusercontent.com/63251838/125170602-4f0c5980-e1e2-11eb-9fc9-59a9e4db20e6.png"> How can I deal with this issue?