-
Notifications
You must be signed in to change notification settings - Fork 619
[Dashboard] Remove chakra-ui from snapshot-upload #5543
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
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Your org has enabled the Graphite merge queue for merging into mainAdd the label “merge-queue” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
This stack of pull requests is managed by Graphite. Learn more about stacking. |
...board)/(chain)/[chain_id]/[contractAddress]/_components/claim-conditions/snapshot-upload.tsx
Outdated
Show resolved
Hide resolved
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5543 +/- ##
=======================================
Coverage 46.31% 46.32%
=======================================
Files 1082 1082
Lines 58672 58672
Branches 3955 3950 -5
=======================================
+ Hits 27174 27178 +4
+ Misses 30815 30811 -4
Partials 683 683
*This pull request uses carry forward flags. Click here to find out more.
|
size-limit report 📦
|
MananTank
left a comment
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.
@kien-ngo please attach linear ticket reference
03468c0 to
ebf94a6
Compare
37c933f to
f115b17
Compare
|
f115b17 to
e37db1d
Compare
33eb953 to
fb19ac2
Compare
| * }); | ||
| * ``` | ||
| * Result: `0.0000057` (a number) | ||
| * Result: `{ result: 0.0000057 }` |
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.
Need to sneak in this fix!
| * }); | ||
| * | ||
| * // Result: 3404.11 | ||
| * // Result: `{ result: 3404.11 }` |
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.
Need to sneak in this fix!
Merge activity
|
part of DASH-388 <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on updating the return types in the `convertFiatToCrypto` and `convertCryptoToFiat` functions to return objects instead of plain numbers. Additionally, it modifies the `SnapshotUpload` component to replace `Link` elements with `a` tags and adjusts the layout for better styling. ### Detailed summary - Changed return type of `convertFiatToCrypto` to `{ result: 0.0000057 }`. - Changed return type of `convertCryptoToFiat` to `{ result: 3404.11 }`. - Replaced `Link` components with `a` tags in `SnapshotUpload`. - Adjusted layout and styling in `SnapshotUpload` for improved design. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
fb19ac2 to
4ae50f5
Compare

part of DASH-388
PR-Codex overview
This PR focuses on updating the return types in the
convertFiatToCryptoandconvertCryptoToFiatfunctions to return objects instead of plain numbers. Additionally, it refactors theSnapshotUploadcomponent to replaceFlexcomponents withdivelements and updateLinkcomponents toaelements for better semantics.Detailed summary
convertFiatToCryptoto{ result: number }.convertCryptoToFiatto{ result: number }.Flexcomponents withdivelements inSnapshotUploadfor layout.Linkcomponents toaelements inSnapshotUploadfor semantic correctness.