fix: Add missing semicolon
diff --git a/erpnext/stock/doctype/serial_no/serial_no_list.js b/erpnext/stock/doctype/serial_no/serial_no_list.js
index 559a9a7..5b1e312 100644
--- a/erpnext/stock/doctype/serial_no/serial_no_list.js
+++ b/erpnext/stock/doctype/serial_no/serial_no_list.js
@@ -6,9 +6,9 @@
 		} else if (doc.delivery_document_type) {
 			return [__("Delivered"), "green", "delivery_document_type,is,set|is_cancelled,=,No"];
 		} else if (doc.warranty_expiry_date && frappe.datetime.get_diff(doc.warranty_expiry_date, frappe.datetime.nowdate()) <= 0) {
-			return [__("Expired"), "red", "warranty_expiry_date,not in,|warranty_expiry_date,<=,Today|delivery_document_type,is,not set|is_cancelled,=,No"]
+			return [__("Expired"), "red", "warranty_expiry_date,not in,|warranty_expiry_date,<=,Today|delivery_document_type,is,not set|is_cancelled,=,No"];
 		} else {
 			return [__("Active"), "green", "delivery_document_type,is,not set|is_cancelled,=,No"];
-		};
+		}
 	}
 };