Skip to content
This repository was archived by the owner on Mar 1, 2026. It is now read-only.

Commit 97dc9a6

Browse files
committed
resolve comments
1 parent c4a9caa commit 97dc9a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/src/actions/proxy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function evaluateUrl(value: string): string {
9292
(trimmedValue.startsWith('"') && trimmedValue.endsWith('"')) ||
9393
(trimmedValue.startsWith("'") && trimmedValue.endsWith("'"))
9494
) {
95-
trimmedValue = trimmedValue.slice(1, -1);
95+
trimmedValue = trimmedValue.slice(1, -1).trim();
9696
}
9797

9898
// Check if it's an env() function call

0 commit comments

Comments
 (0)