Skip to content

Commit

Permalink
Minor fix to previous
Browse files Browse the repository at this point in the history
  • Loading branch information
miko committed Nov 21, 2024
1 parent cfdca7a commit 0839eef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion flow-typed/Collections.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ declare type CollectionState = {
// -- sync --
unpublished: CollectionGroup,
edited: CollectionGroup,
unsavedChanges?: CollectionGroup,
unsavedChanges: CollectionGroup,
updated: UpdatedCollectionGroup,
builtin: CollectionGroup,
savedIds: Array<string>,
Expand Down
1 change: 1 addition & 0 deletions ui/redux/reducers/collections.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const defaultState: CollectionState = {
unpublished: {},
edited: {},
updated: {},
unsavedChanges: {},
savedIds: [],
// -- local --
isFetchingMyCollections: undefined,
Expand Down

0 comments on commit 0839eef

Please sign in to comment.