feat: 本次提交更新内容如下

eslint规则校验
This commit is contained in:
2025-07-28 17:18:03 +08:00
parent a9306bb8ba
commit e1ed0e5dff
61 changed files with 275 additions and 225 deletions

View File

@@ -59,7 +59,7 @@ export default function GroupSelection({
// 获取已选群聊详细信息
const selectedGroupObjs = groups.filter(group =>
selectedGroups.includes(group.id)
selectedGroups.includes(group.id),
);
// 删除已选群聊
@@ -106,7 +106,7 @@ export default function GroupSelection({
const fetchGroups = async (page: number, keyword: string = "") => {
setLoading(true);
try {
let params: any = {
const params: any = {
page,
limit: 20,
};
@@ -141,7 +141,7 @@ export default function GroupSelection({
// 如果有 onSelectDetail 回调,传递完整的群聊对象
if (onSelectDetail) {
const selectedGroupObjs = groups.filter(group =>
newSelectedGroups.includes(group.id)
newSelectedGroups.includes(group.id),
);
onSelectDetail(selectedGroupObjs);
}