From 84f16d1fb1050041809a75b80a745a6b6c609722 Mon Sep 17 00:00:00 2001 From: Bytebinders Date: Sun, 30 Aug 2026 05:18:14 +0100 Subject: [PATCH] feat: add accessible QRCode component using canvas rendering --- src/components/QRCode.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/QRCode.tsx b/src/components/QRCode.tsx index c93986b..133de1d 100644 --- a/src/components/QRCode.tsx +++ b/src/components/QRCode.tsx @@ -9,7 +9,7 @@ function readCssColor(variable: string, fallback: string): string { .getPropertyValue(variable) .trim(); return value || fallback; -} +} interface QRCodeProps { value: string;