diff --git a/Tusker/Screens/Compose/ComposeAttachmentRow.swift b/Tusker/Screens/Compose/ComposeAttachmentRow.swift index ab26294c..29eb78b1 100644 --- a/Tusker/Screens/Compose/ComposeAttachmentRow.swift +++ b/Tusker/Screens/Compose/ComposeAttachmentRow.swift @@ -37,9 +37,9 @@ struct ComposeAttachmentRow: View { } } - Button(action: self.removeAttachment) { + Button(role: .destructive, action: self.removeAttachment) { Label("Delete", systemImage: "trash") - }.foregroundStyle(.red) + } } previewIfAvailable: { ComposeAttachmentImage(attachment: attachment, fullSize: true) }