Skip to content

Commit

Permalink
Clean comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbicus committed Nov 11, 2024
1 parent c6ad9ad commit 057eb40
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion app/create-card/scanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ export default function Scanner({
}, [getCameraDevices]);

useEffect(() => {
console.log('use effect called');
let cleanup: () => void;
if (activeDevice?.id) {
cleanup = startScanning(activeDevice.id);
Expand Down
1 change: 0 additions & 1 deletion app/ui/qrcode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import qrcode from 'qrcode';

export function Qrcode({ code }: { code: string }) {
const [dataUrl, setDataUrl] = useState('');
console.log('code:', code);
useEffect(() => {
qrcode
.toDataURL(code, {
Expand Down

0 comments on commit 057eb40

Please sign in to comment.