Files
openclaw/src/status/status-labels.ts
2026-04-23 18:49:25 +01:00

7 lines
133 B
TypeScript

export const formatFastModeLabel = (enabled: boolean): string | null => {
if (!enabled) {
return null;
}
return "Fast";
};