浏览代码

test git lint

dufu1991 3 年之前
父节点
当前提交
9b4c9b32fb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      demo/src/App.svelte

+ 1 - 1
demo/src/App.svelte

@@ -11,7 +11,7 @@
 	// Cycle menuList, and combine the childs of all elements into an array
 	const menuListArr = menuList.reduce((acc, cur) => {
 		if (cur.childs) {
-			acc.push(...cur.childs);
+			acc.push(...cur.childs)
 		}
 		return acc;
 	}, []);