-
Notifications
You must be signed in to change notification settings - Fork 20
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
Remove unordered list from Marquee & ensure we have no empty rows #2035
Conversation
🦋 Changeset detectedLatest commit: caff0f8 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
📚 Storybook DeploymentThe latest changes are available as preview in: https://b93a646a.the-guild-docs-storybook.pages.dev |
@@ -106,11 +106,15 @@ export function MarqueeRows({ | |||
className, | |||
...rest | |||
}: MarqueeRowsProps) { | |||
const chunkSize = Math.ceil(children.length / rows); | |||
const chunkSize = Math.floor(children.length / rows); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upon using it a bit, I realized that
<ul>
was added mistakenly, and I copy-pasted it like a dumbo.Also fixed the math for chunking so we don't add an empty row.