Skip to content

Commit

Permalink
Merge pull request #190 from getAlby/task-qr-fix
Browse files Browse the repository at this point in the history
chore: add high error correction level to qr codes
  • Loading branch information
im-adithya authored Dec 3, 2024
2 parents a24277b + b42f078 commit 11eb1c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/QRCode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function QRCode({ value }: { value: string }) {
style={{ borderRadius: 28, elevation: 2 }}
>
<View className="flex items-center justify-center p-3 rounded-3xl bg-white w-96 h-96">
<QRCodeLibrary value={value} size={300} />
<QRCodeLibrary value={value} size={300} ecl="H" />
</View>
</LinearGradient>
);
Expand Down

0 comments on commit 11eb1c6

Please sign in to comment.