Skip to content

Commit

Permalink
uids
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-defi committed Dec 15, 2024
1 parent 7f03505 commit 9d294d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/components/QrCode/QrCodeSvg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export function QrCodeSvg({
];

const matrix = useMatrix(value, ecl);
const corners = useCorners(size, matrix.length, bgColor, fillColor);
const corners = useCorners(size, matrix.length, bgColor, fillColor, uid);
const { x: x1, y: y1 } = GRADIENT_START_COORDINATES;
const { x: x2, y: y2 } = GRADIENT_END_COORDINATES;

Expand Down
1 change: 1 addition & 0 deletions src/internal/components/QrCode/useCorners.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export function useCorners(
fillColor,
rectSize,
size,
uid,
],
);
return corners;
Expand Down

0 comments on commit 9d294d4

Please sign in to comment.