We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 144f238 commit de483aaCopy full SHA for de483aa
ui/src/main/java/io/snabble/sdk/ui/cart/PaymentSelectionHelper.java
@@ -433,7 +433,7 @@ public boolean shouldShowGooglePayButton() {
433
}
434
435
public boolean shouldShowSmallSelector() {
436
- return selectedEntry.getValue() != null || !shouldShowBigSelector();
+ return cart.size() > 0 && (selectedEntry.getValue() != null || !shouldShowBigSelector());
437
438
439
private void setSelectedEntry(Entry entry) {
0 commit comments