fix: sider
diff --git a/cypress/integration/test_organizational_chart_desktop.js b/cypress/integration/test_organizational_chart_desktop.js
index 0da4e56..57b7f7d 100644
--- a/cypress/integration/test_organizational_chart_desktop.js
+++ b/cypress/integration/test_organizational_chart_desktop.js
@@ -14,8 +14,7 @@
 					'X-Frappe-CSRF-Token': csrf_token
 				},
 				timeout: 60000
-			})
-			.then(res => {
+			}).then(res => {
 				expect(res.status).eq(200);
 				cy.get('.frappe-control[data-fieldname=company] input').focus().as('input');
 				cy.get('@input')
diff --git a/cypress/integration/test_organizational_chart_mobile.js b/cypress/integration/test_organizational_chart_mobile.js
index 0374678..214229f 100644
--- a/cypress/integration/test_organizational_chart_mobile.js
+++ b/cypress/integration/test_organizational_chart_mobile.js
@@ -7,25 +7,25 @@
 
 		cy.window().its('frappe.csrf_token').then(csrf_token => {
 			return cy.request({
-				url: `/api/method/erpnext.tests.ui_test_helpers.create_employee_records`,
-				method: 'POST',
-				headers: {
-					Accept: 'application/json',
-					'Content-Type': 'application/json',
-					'X-Frappe-CSRF-Token': csrf_token
-				},
-				timeout: 60000
-			})
-			.then(res => {
-				expect(res.status).eq(200);
-				cy.get('.frappe-control[data-fieldname=company] input').focus().as('input');
-				cy.get('@input')
-					.clear({ force: true })
-					.type('Test Org Chart{enter}', { force: true })
-					.blur({ force: true });
+					url: `/api/method/erpnext.tests.ui_test_helpers.create_employee_records`,
+					method: 'POST',
+					headers: {
+						Accept: 'application/json',
+						'Content-Type': 'application/json',
+						'X-Frappe-CSRF-Token': csrf_token
+					},
+					timeout: 60000
+				})
+				.then(res => {
+					expect(res.status).eq(200);
+					cy.get('.frappe-control[data-fieldname=company] input').focus().as('input');
+					cy.get('@input')
+						.clear({ force: true })
+						.type('Test Org Chart{enter}', { force: true })
+						.blur({ force: true });
 
-				cy.get('body').click();
-			});
+					cy.get('body').click();
+				});
 		});
 	});