From f38a1caa591fa43cb3d6249b90919c9a3a185c25 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Tue, 24 Mar 2026 16:44:44 -0500 Subject: chore: rename unused protocol params to _ across UIKit representables --- Hutch/Extensions/SRHTShareUI.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Hutch/Extensions') diff --git a/Hutch/Extensions/SRHTShareUI.swift b/Hutch/Extensions/SRHTShareUI.swift index d09476f..37a9334 100644 --- a/Hutch/Extensions/SRHTShareUI.swift +++ b/Hutch/Extensions/SRHTShareUI.swift @@ -52,11 +52,11 @@ struct SRHTShareButton: View { private struct ShareSheet: UIViewControllerRepresentable { let activityItems: [Any] - func makeUIViewController(context: Context) -> UIActivityViewController { + func makeUIViewController(context _: Context) -> UIActivityViewController { UIActivityViewController(activityItems: activityItems, applicationActivities: nil) } - func updateUIViewController(_ uiViewController: UIActivityViewController, context: Context) { + func updateUIViewController(_ : UIActivityViewController, context _: Context) { // UIActivityViewController is fully configured in makeUIViewController. // No state-driven updates are required. } -- cgit v1.2.3