fix: when showing the "Overview" for a bundle offer, the line breaks …#1176
fix: when showing the "Overview" for a bundle offer, the line breaks …#1176levalleux-ludo wants to merge 1 commit intomainfrom
Conversation
…are not taken into account in the description
There was a problem hiding this comment.
Pull request overview
This PR addresses a bug where line breaks in bundle offer descriptions were not being rendered properly in the "Overview" tab. The fix is implemented by upgrading two Boson Protocol packages to their alpha versions:
Changes:
- Updated
@bosonprotocol/commonfrom1.32.2to1.32.2-alpha.0 - Updated
@bosonprotocol/react-kitfrom0.42.1to0.42.2-alpha.0
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Updated dependencies to use alpha versions of @bosonprotocol/common and @bosonprotocol/react-kit packages |
| pnpm-lock.yaml | Updated lockfile with new package resolutions, integrity hashes, and dependency snapshots for the alpha versions |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "@bosonprotocol/common": "1.32.2", | ||
| "@bosonprotocol/react-kit": "0.42.1", | ||
| "@bosonprotocol/common": "1.32.2-alpha.0", | ||
| "@bosonprotocol/react-kit": "0.42.2-alpha.0", |
There was a problem hiding this comment.
Using alpha/prerelease versions in production dependencies introduces stability risks. Alpha versions are typically intended for testing and may contain bugs or breaking changes. Consider:
- Verifying these alpha versions have been tested thoroughly
- Creating a release plan to upgrade to stable versions once available
- Documenting why alpha versions are necessary
- Monitoring for any issues in production
If this is meant for a testing/staging environment, consider using different dependency configurations for different environments.
| "@bosonprotocol/react-kit": "0.42.2-alpha.0", | |
| "@bosonprotocol/react-kit": "0.42.2", |
Deploying boson-dapp-testing with
|
| Latest commit: |
173da44
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://57082338.interface-a9d.pages.dev |
| Branch Preview URL: | https://1174-bundle-overview-style.interface-a9d.pages.dev |
…are not taken into account in the description
fixes #1174