PasteButton in a confirmationDialog

Hey,

Anyone knows of a possible way to present a PasteButton in a .confirmationDialog on iOS?

when I try adding it, it's ignored and not displayed with the rest of the buttons

struct MyView: View {
    @State var flag: Bool = false
    
    var body: some View {
        Text("Some Text")
            .confirmationDialog("Dialog", isPresented: $flag) {
                Group {
                    Button("A") {}
                    Button("B") {}
                    PasteButton(payloadType: Data.self) { data in
                    }
                }
            }
    }
}
PasteButton in a confirmationDialog
 
 
Q