diff --git a/gui/src/totp_page.rs b/gui/src/totp_page.rs index a0b02e5..5fb86d3 100644 --- a/gui/src/totp_page.rs +++ b/gui/src/totp_page.rs @@ -144,8 +144,7 @@ impl TotpPage { // installed, Pixbuf creation fails and we silently skip the visual — // the secret_b32 + URI in the body remain a working manual-entry // fallback. - let qr = - qrcode::QrCode::new(otpauth_uri.as_bytes()).expect("otpauth URI is QR-encodable"); + let qr = qrcode::QrCode::new(otpauth_uri.as_bytes()).expect("otpauth URI is QR-encodable"); let svg = qr .render::>() .min_dimensions(256, 256)