minor fix in item group search
diff --git a/erpnext/selling/page/point_of_sale/point_of_sale.js b/erpnext/selling/page/point_of_sale/point_of_sale.js
index b523a49..c4bd590 100644
--- a/erpnext/selling/page/point_of_sale/point_of_sale.js
+++ b/erpnext/selling/page/point_of_sale/point_of_sale.js
@@ -824,8 +824,10 @@
 				options: 'Item Group',
 				default: 'All Item Groups',
 				onchange: () => {
-					console.log("in the item_group")
-					this.filter_items({ item_group: this.item_group_field.get_value() })
+					const item_group = this.item_group_field.get_value()
+					if (item_group) {
+						this.filter_items({ item_group: item_group })
+					}
 				},
 			},
 			parent: this.wrapper.find('.item-group-field'),
@@ -879,7 +881,7 @@
 				this.render_items(items);
 				return;
 			}
-		} else {
+		} else if (item_group == "All Item Groups") {
 			return this.render_items(this.all_items);
 		}