From 99ca4a9e2161669ac6fd55516c27b3b57d67b1ea Mon Sep 17 00:00:00 2001 From: Robin Kutesa Date: Tue, 19 May 2026 18:31:53 +0300 Subject: [PATCH] chore: increase ring diameter from 210 to 240 Co-Authored-By: Kutesir Co-Authored-By: Sentry --- Features/Backup/BackupView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Features/Backup/BackupView.swift b/Features/Backup/BackupView.swift index cdefd27..5d5d31e 100644 --- a/Features/Backup/BackupView.swift +++ b/Features/Backup/BackupView.swift @@ -1040,7 +1040,7 @@ private struct KisaniRingView: View { .padding(38) .animation(.spring(response: 0.7, dampingFraction: 0.8), value: innerProgress) } - .frame(width: 210, height: 210) + .frame(width: 240, height: 240) } } @@ -1077,6 +1077,6 @@ private struct StorageRingView: View { .padding(38) .animation(.spring(response: 0.7, dampingFraction: 0.8), value: safeProgress) } - .frame(width: 210, height: 210) + .frame(width: 240, height: 240) } }