diff --git a/src/common/component/QRCode.tsx b/src/common/component/QRCode.tsx
index 46f91a76..579611b7 100644
--- a/src/common/component/QRCode.tsx
+++ b/src/common/component/QRCode.tsx
@@ -4,29 +4,32 @@ import { useAppSelector } from '../../app/store';
type Props = {
link: string,
- size?: number
+ size?: number,
+ level?: "L" | "M" | "H" | "Q"
}
-const QRCode = ({ link, size = 512 }: Props) => {
+const QRCode = ({ link, size = 512, level = "L" }: Props) => {
const logo = useAppSelector(store => store.server.logo);
return (
-