diff --git a/src/infra/outbound/target-format.ts b/src/infra/outbound/target-format.ts deleted file mode 100644 index 827d78a7d..000000000 --- a/src/infra/outbound/target-format.ts +++ /dev/null @@ -1,4 +0,0 @@ -export function formatTargetHint(hint?: string, withLabel = false): string { - if (!hint) return ""; - return withLabel ? ` Hint: ${hint}` : ` ${hint}`; -}