Conversation
WalkthroughThis pull request refactors overlay theming functionality by replacing a boolean 🚥 Pre-merge checks | ✅ 2 | ❌ 3❌ Failed checks (3 warnings)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@packages/react-native/src/components/survey-web-view.tsx`:
- Around line 16-25: The getOverlayBackgroundColor function maps the "none"
overlay to a visible semi-transparent black; change the mapping for case "none"
in getOverlayBackgroundColor to return a fully transparent color (e.g.,
"transparent" or "rgba(0,0,0,0)") instead of "rgba(0, 0, 0, 0.5)"; keep the
switch structure and return type string unchanged so callers of
getOverlayBackgroundColor still receive a string.
|



Fixes #16