Optimize rendering, fix Android app extraction, and remove Cloudflare token leak
Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled

This commit is contained in:
Claude Code
2026-07-17 21:11:59 -07:00
parent a9f654c993
commit bb37d8c384
32 changed files with 518 additions and 645 deletions

View File

@@ -1,3 +1,4 @@
import { memo } from 'react';
import type { FleetGroup } from '../../help/fleetGroups';
import { HelpTip } from '../HelpTip';
import './FleetGroupsStrip.css';
@@ -11,7 +12,7 @@ interface Props {
selectedCount?: number;
}
export default function FleetGroupsStrip({
function FleetGroupsStrip({
groups,
liveAgentIds,
onSelectGroup,
@@ -80,3 +81,5 @@ export default function FleetGroupsStrip({
</div>
);
}
export default memo(FleetGroupsStrip);