From 1b731ece90247f4e1ecec7a7f73311752d18134e Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Thu, 24 Nov 2022 14:57:41 +0800 Subject: [PATCH] Make delete language consistent on iOS and web --- .../Sources/App/Views/Home/HomeFeedViewIOS.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift index cc97741df..c94991fd8 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift @@ -397,9 +397,9 @@ import Views } .padding(.top, 0) .listStyle(PlainListStyle()) - .alert("Are you sure you want to remove this item? All associated notes and highlights will be deleted.", + .alert("Are you sure you want to delete this item? All associated notes and highlights will be deleted.", isPresented: $confirmationShown) { - Button("Remove Item") { + Button("Delete Item") { if let itemToRemove = itemToRemove { withAnimation { viewModel.removeLink(dataService: dataService, objectID: itemToRemove.objectID) @@ -486,8 +486,8 @@ import Views } } } - .alert("Are you sure you want to remove this item? All associated notes and highlights will be deleted.", isPresented: $confirmationShown) { - Button("Remove Item", role: .destructive) { + .alert("Are you sure you want to delete this item? All associated notes and highlights will be deleted.", isPresented: $confirmationShown) { + Button("Delete Item", role: .destructive) { if let itemToRemove = itemToRemove { withAnimation { viewModel.removeLink(dataService: dataService, objectID: itemToRemove.objectID)