add autofix pnpm (#25557)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Asuka Minato
2025-09-12 10:37:54 +09:00
committed by GitHub
parent 84e3571ec3
commit 77ba3e8f26
24 changed files with 54 additions and 33 deletions

View File

@@ -229,7 +229,7 @@ const PageSelector = ({
if (current.expand) {
current.expand = false
newDataList = [...dataList.filter(item => !descendantsIds.includes(item.page_id))]
newDataList = dataList.filter(item => !descendantsIds.includes(item.page_id))
}
else {
current.expand = true
@@ -246,7 +246,7 @@ const PageSelector = ({
setDataList(newDataList)
}
const copyValue = new Set([...value])
const copyValue = new Set(value)
const handleCheck = (index: number) => {
const current = currentDataList[index]
const pageId = current.page_id
@@ -269,7 +269,7 @@ const PageSelector = ({
copyValue.add(pageId)
}
onSelect(new Set([...copyValue]))
onSelect(new Set(copyValue))
}
const handlePreview = (index: number) => {