mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-03 03:03:24 -04:00
5 lines
155 B
TypeScript
5 lines
155 B
TypeScript
export function formatTargetHint(hint?: string, withLabel = false): string {
|
|
if (!hint) return "";
|
|
return withLabel ? ` Hint: ${hint}` : ` ${hint}`;
|
|
}
|