Render QR code with SVG, not canvas

This commit is contained in:
Evan Hahn 2022-01-14 10:45:05 -06:00 committed by GitHub
parent 7486312e4e
commit eba8d8d4b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 50 deletions

View file

@ -7527,10 +7527,10 @@
{
"rule": "React-useRef",
"path": "ts/components/QrCode.tsx",
"line": " const canvasRef = useRef<null | HTMLCanvasElement>(null);",
"line": " const elRef = useRef<null | HTMLImageElement>(null);",
"reasonCategory": "usageTrusted",
"updated": "2022-01-04T21:43:17.517Z",
"reasonDetail": "Used to draw on the canvas."
"reasonDetail": "Used to change the style in non-production builds."
},
{
"rule": "React-createRef",