Skip to content

Commit

Permalink
Merge pull request Expensify#40985 from tienifr/fix/40086
Browse files Browse the repository at this point in the history
Console error shows up when clicking Share button
  • Loading branch information
pecanoro authored May 2, 2024
2 parents 20bd114 + 224f09e commit 004b3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/QRShare/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function QRShare({url, title, subtitle, logo, logoRatio, logoMarginRatio}: QRSha
const styles = useThemeStyles();
const theme = useTheme();

const [qrCodeSize, setQrCodeSize] = useState(0);
const [qrCodeSize, setQrCodeSize] = useState<number | undefined>();
const svgRef = useRef<Svg>();

useImperativeHandle(
Expand Down

0 comments on commit 004b3af

Please sign in to comment.