Skip to content

Commit 9415b81

Browse files
committed
Push change
1 parent c2b2b26 commit 9415b81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/api/lib/api-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export class ApiClient {
228228
const processValue = (value: unknown, currentPath: string): unknown => {
229229
if (this.isFile(value)) {
230230
files.push({ path: currentPath, file: value });
231-
return null; // Replace file with null per the spec
231+
return null; // Replace file with null per the GraphQL multipart request specification
232232
}
233233

234234
if (Array.isArray(value)) {

0 commit comments

Comments
 (0)