From a0c78a8d03cf986e456d5ceab451a90e46b68bca Mon Sep 17 00:00:00 2001 From: Belli Date: Sat, 25 Apr 2026 13:09:16 -0700 Subject: [PATCH] refactor: drop orphan Savely/ContentView.swift template stub MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The file was the original SwiftUI template scaffolding. It's not referenced by Savely.xcodeproj — the canonical ContentView lives at Savely/Views/ContentView.swift and is the one wired into the target. Removing the stale copy to avoid confusion in future searches. --- Savely/ContentView.swift | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 Savely/ContentView.swift diff --git a/Savely/ContentView.swift b/Savely/ContentView.swift deleted file mode 100755 index 97c3804..0000000 --- a/Savely/ContentView.swift +++ /dev/null @@ -1,24 +0,0 @@ -// -// ContentView.swift -// Savely -// -// Created by Ivan Lorenzana Belli on 16/10/24. -// - -import SwiftUI - -struct ContentView: View { - var body: some View { - VStack { - Image(systemName: "globe") - .imageScale(.large) - .foregroundStyle(.tint) - Text("Hello, world!") - } - .padding() - } -} - -#Preview { - ContentView() -}