@@ -55,6 +55,8 @@ export const fetchFloders = async () => {
})
}
}))
+
+ // 去重,主要是离线包出现这个问题
const uniqueFloders = floders.reduce((acc: Floders, current) => {
const isDuplicate = acc.some(item =>
item.filesTitle === current.filesTitle &&