fix(minor): remove "hide_workspaces" from erpnext/install.py
diff --git a/erpnext/setup/install.py b/erpnext/setup/install.py
index 7a1d5e2..6239864 100644
--- a/erpnext/setup/install.py
+++ b/erpnext/setup/install.py
@@ -31,7 +31,6 @@
 	add_company_to_session_defaults()
 	add_standard_navbar_items()
 	add_app_name()
-	hide_workspaces()
 	update_roles()
 	frappe.db.commit()
 
@@ -218,11 +217,6 @@
 	frappe.db.set_single_value("System Settings", "app_name", "ERPNext")
 
 
-def hide_workspaces():
-	for ws in ["Integration", "Settings"]:
-		frappe.db.set_value("Workspace", ws, "public", 0)
-
-
 def update_roles():
 	website_user_roles = ("Customer", "Supplier")
 	for role in website_user_roles: