Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Storybook] Fix Collection stories #1049

Merged
merged 1 commit into from
Dec 20, 2021
Merged

[Storybook] Fix Collection stories #1049

merged 1 commit into from
Dec 20, 2021

Conversation

benoitgrelard
Copy link
Contributor

Whilst checking every story when working on #1048 I noticed all of the Collection stories were broken.
Probably have been broken since we use the scoping of contexts, the scope wasn't matching in useCollection usage.

@@ -157,7 +157,7 @@ const MemoItem = React.memo(Item);
const MemoItems = React.memo(WrappedItems);

function LogItems({ name = 'items' }: { name?: string }) {
const getItems = useCollection({});
const getItems = useCollection(undefined);
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Basically, we were passing scope={undefined} everywhere on the component props, but here we were passing an empty object.

@jjenzz jjenzz merged commit ccc83b6 into main Dec 20, 2021
@jjenzz jjenzz deleted the fix-collection-stories branch December 20, 2021 11:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants