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

格式更新一下
This commit is contained in:
笔记本里的永平
2025-07-28 16:53:18 +08:00
parent c8742de888
commit a9306bb8ba
178 changed files with 17535 additions and 16780 deletions

View File

@@ -43,7 +43,7 @@ const DeviceSelection: React.FC<DeviceSelectionProps> = ({
// 删除已选设备
const handleRemoveDevice = (id: string) => {
if (readonly) return;
onSelect(selectedDevices.filter((d) => d !== id));
onSelect(selectedDevices.filter(d => d !== id));
};
return (
@@ -79,7 +79,7 @@ const DeviceSelection: React.FC<DeviceSelectionProps> = ({
background: "#fff",
}}
>
{selectedDevices.map((deviceId) => (
{selectedDevices.map(deviceId => (
<div
key={deviceId}
className={style.selectedListRow}