diff --git a/Threaded/Views/Settings/ShopView.swift b/Threaded/Views/Settings/ShopView.swift index 6221bb9..a2df880 100644 --- a/Threaded/Views/Settings/ShopView.swift +++ b/Threaded/Views/Settings/ShopView.swift @@ -8,7 +8,7 @@ struct ShopView: View { var body: some View { NavigationStack { - ProductView(id: "fr.lumaa.Threaded.plus") { + SubscriptionStoreView(productIDs: ["fr.lumaa.ThreadedPlus.yearly"]) { VStack { Text(String("Threaded+")) // Force the name as untranslatable .font(.title.bold()) @@ -25,15 +25,6 @@ struct ShopView: View { .navigationTitle(String("")) .navigationBarTitleDisplayMode(.inline) .navigationBarBackButtonHidden() - .toolbar { - ToolbarItem(placement: .cancellationAction) { - Button { - dismiss() - } label: { - Text("shop.cancel") - } - } - } } } }