Skip to content

Commit a9f3ab2

Browse files
committed
fix: qr and bump version
1 parent 315f9b9 commit a9f3ab2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"react-router-dom": "^6.16.0",
4141
"react-scripts": "^5.0.1",
4242
"replace-module-webpack-plugin": "^1.0.0",
43-
"spv-store": "^0.1.76",
43+
"spv-store": "^0.1.77",
4444
"stream-browserify": "^3.0.0",
4545
"styled-components": "^6.0.8",
4646
"ts-loader": "^9.5.1",

src/components/QrCode.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const QrCode = (props: QrCodeProps) => {
2020
const [qrUrl, setQrUrl] = useState<string | null>(null);
2121

2222
useEffect(() => {
23-
const uri = link ?? `bitcoin:${address}`;
23+
const uri = link ?? `${address}`;
2424
qr.toDataURL(uri, function (err, url) {
2525
if (err) {
2626
console.error(err);

0 commit comments

Comments
 (0)