Skip to content

Commit

Permalink
fix: empty epsf logo
Browse files Browse the repository at this point in the history
  • Loading branch information
tienifr committed Apr 29, 2024
1 parent 87f8c12 commit 224f09e
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(1);
const [qrCodeSize, setQrCodeSize] = useState<number | undefined>();
const svgRef = useRef<Svg>();

useImperativeHandle(
Expand Down

0 comments on commit 224f09e

Please sign in to comment.