Skip to content

Commit

Permalink
Run linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex H authored and Alex H committed Dec 16, 2024
1 parent be22cc5 commit c1a4e7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/lib/svgToPdf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export async function convertSVGtoPDF(
}
}

source = source.replace(`{{ qr_code }}`, `'${'data:image/png;base64, ' + qrCodeBase64}'`);
source = source.replace('{{ qr_code }}', `'${'data:image/png;base64, ' + qrCodeBase64}'`);
const template = Handlebars.compile(source);
const svg = template(data);

Expand Down
2 changes: 1 addition & 1 deletion app/screens/PublicLinkScreen/PublicLinkScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useEffect, useMemo, useRef, useState } from 'react';
import { View, ScrollView, Linking, TextInput as RNTextInput, Platform, Image } from 'react-native';
import { View, ScrollView, Linking, TextInput as RNTextInput, Platform } from 'react-native';
import { Button, Text } from 'react-native-elements';
import { TextInput } from 'react-native-paper';
import QRCode from 'react-native-qrcode-svg';
Expand Down

0 comments on commit c1a4e7c

Please sign in to comment.