fix(content-sidebar): remove dependency on isSignRemoveInterstitialEnabled#3734
Merged
mergify[bot] merged 3 commits intobox:masterfrom Feb 28, 2025
Merged
Conversation
JChan106
previously approved these changes
Nov 4, 2024
GonchuB
reviewed
Nov 5, 2024
GonchuB
previously approved these changes
Nov 5, 2024
aea92d0 to
1020007
Compare
JChan106
previously approved these changes
Nov 5, 2024
greg-in-a-box
requested changes
Nov 5, 2024
1020007 to
bdba5eb
Compare
bdba5eb to
3b5d387
Compare
greg-in-a-box
requested changes
Nov 6, 2024
3b5d387 to
a982541
Compare
f4855fe to
8fd8f2e
Compare
8fd8f2e to
ba55f34
Compare
b0d2d93 to
8a40819
Compare
cbf2ac3 to
f54b7ad
Compare
greg-in-a-box
requested changes
Jan 16, 2025
| signSideBarProps, | ||
| }: Props) => { | ||
| const { enabled: hasBoxSign } = useFeatureConfig('boxSign'); | ||
| const { enabled: hasBoxSign } = signSideBarProps || {}; |
Contributor
There was a problem hiding this comment.
is there a permission via the user that enables this feature too ?
Contributor
Author
There was a problem hiding this comment.
Yes, there is a user permission controlled by the admin that enables/disables signing. This is reflected in the enabled property sent by EUA
f54b7ad to
8aed68f
Compare
8aed68f to
60f54fc
Compare
greg-in-a-box
previously approved these changes
Feb 3, 2025
Contributor
greg-in-a-box
left a comment
There was a problem hiding this comment.
approved but this feature has remain undocumented, normally all props at the root level is usable by 3rd customers sine this feature is only enabled by a flag and additional unknown permissions internally, we cant guarantee the 3rd party customers will be able to use it.
tjuanitas
reviewed
Feb 3, 2025
Contributor
tjuanitas
left a comment
There was a problem hiding this comment.
some minor things I think worth cleaning up
6e7c952 to
bf63860
Compare
7d214a8 to
6ba3efd
Compare
6ba3efd to
f3071a5
Compare
tjuanitas
approved these changes
Feb 20, 2025
ghost
approved these changes
Feb 24, 2025
JChan106
approved these changes
Feb 26, 2025
greg-in-a-box
approved these changes
Feb 28, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
isSignRemoveInterstitialEnabledfeature flag was recently cleaned up on the application side, causing a production defect due to a dependency in this components. This PR removes the dependency in BUIE components to align with the application.Also uses sign config in the primary props instead of feature props