From 5361d03a5c9d2bd692374c1a8548c6aca12ae187 Mon Sep 17 00:00:00 2001 From: Robin Kutesa Date: Thu, 21 May 2026 13:55:24 +0300 Subject: [PATCH] =?UTF-8?q?Remove=20HOLD=20TO=20CLEAN=20button=20from=20pa?= =?UTF-8?q?ge=201=20=E2=80=94=20pull-down=20only?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Kutesir Co-Authored-By: Sentry --- Features/Backup/BackupView.swift | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/Features/Backup/BackupView.swift b/Features/Backup/BackupView.swift index 2444359..016390c 100644 --- a/Features/Backup/BackupView.swift +++ b/Features/Backup/BackupView.swift @@ -890,30 +890,6 @@ struct BackupView: View { .padding(.horizontal, AppTheme.hPad) .padding(.bottom, 36) - // HOLD TO CLEAN button - Button(action: { showCleanConfirm = true }) { - Text("HOLD TO CLEAN") - .font(.system(size: 13, weight: .medium, design: .monospaced)) - .tracking(2) - .foregroundStyle(.white) - .frame(maxWidth: .infinity) - .frame(height: 58) - .background(Color(red: 0.08, green: 0.08, blue: 0.08)) - .clipShape(RoundedRectangle(cornerRadius: 18, style: .continuous)) - } - .buttonStyle(.plain) - .padding(.horizontal, AppTheme.hPad) - .simultaneousGesture( - LongPressGesture(minimumDuration: 0.8).onEnded { _ in showCleanConfirm = true } - ) - - Text(String(format: "%.1f GB RECOVERABLE", junkGB)) - .font(.system(size: 9, weight: .regular, design: .monospaced)) - .foregroundStyle(AppTheme.inkTertiary) - .tracking(1.5) - .frame(maxWidth: .infinity) - .padding(.top, 10) - .padding(.bottom, 8) } @ViewBuilder