diff --git a/app/qr/index.tsx b/app/qr/index.tsx
index 5df673c..ff5164d 100644
--- a/app/qr/index.tsx
+++ b/app/qr/index.tsx
@@ -56,7 +56,7 @@ const QRScanner: FC = () => {
Add a new site
-
+
Scan your website's 2FA QR code using your device's camera
@@ -70,7 +70,7 @@ const QRScanner: FC = () => {
ratio="1:1"
/>
-
+
The QR code can be easily recognized by simply pointing your
device's camera at it
diff --git a/src/ui/Text.tsx b/src/ui/Text.tsx
index bf0d837..571db2d 100644
--- a/src/ui/Text.tsx
+++ b/src/ui/Text.tsx
@@ -20,12 +20,14 @@ export type TextVariantTypes = (typeof variants)[number];
export type TextProps = {
variant?: TextVariantTypes | TextVariantTypes[];
size?: keyof typeof MD3TypescaleKey;
+ numberOfLines?: number;
};
const Text: FC = ({
children,
variant = 'primary',
size,
+ numberOfLines = 1,
}) => {
const theme = useTheme();
const styles = getStyles(theme);
@@ -36,7 +38,7 @@ const Text: FC = ({
{children}