From 0d99498c26266a678f497918d6a13a0deac92928 Mon Sep 17 00:00:00 2001 From: michael Date: Mon, 27 Apr 2026 12:20:47 -0700 Subject: [PATCH] style(gui): rustfmt collapse QR QrCode::new line in totp_page --- gui/src/totp_page.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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)