Skip to content

Commit ff6cc37

Browse files
authored
chore: makes parameter optional
1 parent f5493d1 commit ff6cc37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/serialization/form/src/browser/formParseNodeFactory.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class FormParseNodeFactory implements ParseNodeFactory {
1414
* Creates an instance of JsonParseNode.
1515
* @param backingStoreFactory - The factory to create backing stores.
1616
*/
17-
constructor(private readonly backingStoreFactory: BackingStoreFactory) {}
17+
constructor(private readonly backingStoreFactory?: BackingStoreFactory) {}
1818
public getValidContentType(): string {
1919
return "application/x-www-form-urlencoded";
2020
}

0 commit comments

Comments
 (0)