Skip to content

Commit

Permalink
fix: make failedCreationStrategy not required
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewPattell committed Aug 8, 2024
1 parent 53c73bf commit d3b3cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export interface IManagerOptions {
* dummy: force create empty store
* empty (default): don't render component if any of the stores not created
*/
failedCreationStrategy: 'none' | 'dummy' | 'empty';
failedCreationStrategy?: 'none' | 'dummy' | 'empty';
}

export type TAnyStore = IStore | IStorePersisted;
Expand Down

0 comments on commit d3b3cc3

Please sign in to comment.