mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-14 12:30:49 +00:00
7 lines
133 B
TypeScript
7 lines
133 B
TypeScript
export const formatFastModeLabel = (enabled: boolean): string | null => {
|
|
if (!enabled) {
|
|
return null;
|
|
}
|
|
return "Fast";
|
|
};
|