Skip to content

Commit 038cbc1

Browse files
committed
fix: cli
1 parent d53866d commit 038cbc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/cli/lib/client.js.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class Client {
135135

136136
const warnings = response.headers.get('x-{{ spec.title | lower }}-warning');
137137
if (warnings) {
138-
warnings.split(';').forEach((warning: string) => console.warn(warning));
138+
warnings.split(';').forEach((warning) => console.warn(warning));
139139
}
140140
} catch (error) {
141141
throw new {{spec.title | caseUcfirst}}Exception(error.message);

0 commit comments

Comments
 (0)