fix: Remove project filter
diff --git a/erpnext/accounts/doctype/budget/budget.js b/erpnext/accounts/doctype/budget/budget.js
index 48cc493..1b79398 100644
--- a/erpnext/accounts/doctype/budget/budget.js
+++ b/erpnext/accounts/doctype/budget/budget.js
@@ -3,14 +3,6 @@
 
 frappe.ui.form.on('Budget', {
 	onload: function(frm) {
-		frm.set_query("project", function() {
-			return {
-				filters: {
-					company: frm.doc.company
-				}
-			}
-		})
-
 		frm.set_query("account", "accounts", function() {
 			return {
 				filters: {
diff --git a/erpnext/payroll/doctype/payroll_entry/payroll_entry.js b/erpnext/payroll/doctype/payroll_entry/payroll_entry.js
index 9600615..bc34d6c 100644
--- a/erpnext/payroll/doctype/payroll_entry/payroll_entry.js
+++ b/erpnext/payroll/doctype/payroll_entry/payroll_entry.js
@@ -112,15 +112,7 @@
 					"company": frm.doc.company
 				}
 			};
-		}),
-
-		frm.set_query("project", function () {
-			return {
-				filters: {
-					company: frm.doc.company
-				}
-			};
-		});
+		})
 	},
 
 	payroll_frequency: function (frm) {