diff --git a/package.json b/package.json
index 6c201e3c..c6a46fde 100644
--- a/package.json
+++ b/package.json
@@ -8,8 +8,7 @@
"build": "tsc && vite build",
"preview": "vite preview",
"package": "gzipper c -i html,js,css,png,ico,svg,webmanifest,txt dist dist/output && tar -cvf dist/build.tar -C ./dist/output/ $(ls ./dist/output/)",
- "format": "prettier --write 'src/**/*.{ts,tsx}' && eslint src/*.{ts,tsx}",
- "check": "unimported"
+ "format": "prettier --write 'src/**/*.{ts,tsx}' && eslint src/*.{ts,tsx}"
},
"repository": {
"type": "git",
diff --git a/src/components/Dialog/HelpDialog.tsx b/src/components/Dialog/HelpDialog.tsx
index d13e1451..4a401e97 100644
--- a/src/components/Dialog/HelpDialog.tsx
+++ b/src/components/Dialog/HelpDialog.tsx
@@ -1,9 +1,7 @@
-import type React from "react"
+import type React from "react";
-import { Pane } from "evergreen-ui"
+import { Pane } from "evergreen-ui";
export const HelpDialog = (): JSX.Element => {
- return (
-
- )
-}
\ No newline at end of file
+ return ;
+};
diff --git a/src/components/Dialog/QRDialog.tsx b/src/components/Dialog/QRDialog.tsx
index ad7e2ff8..ca4c3172 100644
--- a/src/components/Dialog/QRDialog.tsx
+++ b/src/components/Dialog/QRDialog.tsx
@@ -45,13 +45,13 @@ export const QRDialog = ({
})
);
const base64 = fromByteArray(encoded)
- .replace(/=/g, "")
- .replace(/\+/g, "-")
- .replace(/\//g, "_");
+ .replace(/=/g, "")
+ .replace(/\+/g, "-")
+ .replace(/\//g, "_");
setQRCodeURL(`https://www.meshtastic.org/e/#${base64}`);
}, [channels, selectedChannels, loraConfig]);
-
+
return (