fix: Add non group filter for account
diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.js b/erpnext/accounts/doctype/payment_entry/payment_entry.js
index a7fcbd7..a4022ef 100644
--- a/erpnext/accounts/doctype/payment_entry/payment_entry.js
+++ b/erpnext/accounts/doctype/payment_entry/payment_entry.js
@@ -97,7 +97,8 @@
 			return {
 				filters: {
 					"company": frm.doc.company,
-					"root_type": ["in", ["Asset", "Liability"]]
+					"root_type": ["in", ["Asset", "Liability"]],
+					"is_group": 0
 				}
 			}
 		});