Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Cassidy <steve.cassidy@mq.edu.au>
  • Loading branch information
stevecassidy committed Nov 16, 2023
1 parent ddc7791 commit aca15f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/fields/qrcode/QRCodeFormField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ import {BarcodeScanner} from '@capacitor-community/barcode-scanner';
import {FieldProps} from 'formik';
import ReactDOM from 'react-dom';
import {Capacitor} from '@capacitor/core';
import { createUseStyles } from 'react-jss';

import {createUseStyles} from 'react-jss';

const useStyles = createUseStyles({
container: {
Expand Down Expand Up @@ -85,7 +84,8 @@ const useStyles = createUseStyles({
width: '100%',
margin: '1rem',
border: '2px solid #fff',
boxShadow: '0px 0px 2px 1px rgb(0 0 0 / 0.5), inset 0px 0px 2px 1px rgb(0 0 0 / 0.5)',
boxShadow:
'0px 0px 2px 1px rgb(0 0 0 / 0.5), inset 0px 0px 2px 1px rgb(0 0 0 / 0.5)',
borderRadius: '1rem',
backgroundColor: 'transparent',
},
Expand Down

0 comments on commit aca15f4

Please sign in to comment.