I am using an angular web app utilizing the CloverConnector library to send a print command to the Clover Mini to act as an order printer. No errors seem to be generated, but the device will not print the order.I am already connected to the device via web through the Cloud Pay Display app when the command is sent, and i can process CC between the web app and the device without problem. Any advice would be greatly helpful.
Here is what the function looks like.
setPrint(text: Array<string>, printDeviceId: string, printRequestId: string) {
var printRequest: clover.remotepay.PrintRequest = new clover.remotepay.PrintRequest();
printRequest.setText(text);
printRequest.setPrintDeviceId(printDeviceId);
printRequest.setRequestId(printRequestId);
this.cloverConnector.print(printRequest);
}