From d526f5610648adf481869209a2d6c23322bf7198 Mon Sep 17 00:00:00 2001 From: Rithvik-padma Date: Sat, 30 Sep 2023 09:55:58 +0530 Subject: [PATCH] fix: increase the qr eclevel to make it work for short address --- src/app/components/QRCode/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/QRCode/index.tsx b/src/app/components/QRCode/index.tsx index faf5719506..c8803afcac 100644 --- a/src/app/components/QRCode/index.tsx +++ b/src/app/components/QRCode/index.tsx @@ -19,7 +19,7 @@ export default function QRCode({ value, size, className }: Props) { className={classNames("rounded-md", className ?? "")} fgColor={fgColor} bgColor={bgColor} - level="M" + level="Q" /> ); }