diff options
| author | Christian Cleberg <[email protected]> | 2026-03-24 16:44:44 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-03-24 16:44:44 -0500 |
| commit | f38a1caa591fa43cb3d6249b90919c9a3a185c25 (patch) | |
| tree | be9aa9bb9c0f9de35d700250ff269575915dce12 /Hutch/Extensions | |
| parent | 8da2f907d690a59124d9008c0d8e1e792133702b (diff) | |
| download | hutch-f38a1caa591fa43cb3d6249b90919c9a3a185c25.tar.gz hutch-f38a1caa591fa43cb3d6249b90919c9a3a185c25.tar.bz2 hutch-f38a1caa591fa43cb3d6249b90919c9a3a185c25.zip | |
chore: rename unused protocol params to _ across UIKit representables
Diffstat (limited to 'Hutch/Extensions')
| -rw-r--r-- | Hutch/Extensions/SRHTShareUI.swift | 4 |
1 files changed, 2 insertions, 2 deletions
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<Label: View>: 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. } |
