-
Notifications
You must be signed in to change notification settings - Fork 629
[MNY-334] SDK: Fix Spinner animation missing sometimes in Next.js #8553
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
Conversation
🦋 Changeset detectedLatest commit: 38f4a89 The changes in this PR will be included in the next version bump. This PR includes changesets to release 4 packages
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 |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
size-limit report 📦
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8553 +/- ##
==========================================
- Coverage 54.64% 54.63% -0.01%
==========================================
Files 921 921
Lines 61193 61193
Branches 4154 4150 -4
==========================================
- Hits 33439 33434 -5
- Misses 27652 27657 +5
Partials 102 102
🚀 New features to boost your workflow:
|
Merge activity
|
) <!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR addresses an issue with the `Spinner` component's animation in a Next.js environment, ensuring that the animation works consistently. ### Detailed summary - Updated the `Spinner` component to use a `<circle>` element instead of a `Circle` styled component. - Removed the `StyledCircle` import from `elements.js`. - Added animation styles directly to the `<circle>` element. - Defined the `tw-spinner-circle-dash` keyframe animation within the component. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
724a4cb to
31e24f1
Compare
8bfe4e4 to
38f4a89
Compare

PR-Codex overview
This PR focuses on fixing the
Spinneranimation issue in a Next.js application by modifying theSpinnercomponent's implementation.Detailed summary
Spinner.tsxto removeStyledCircle.Circlecomponent with acircleSVG element.circleto implement the animation.dashAnimationkeyframes directly in the component.