Fix missing blue gradient (Nova tint) on mobile and adjust position#911
Open
Fix missing blue gradient (Nova tint) on mobile and adjust position#911
Conversation
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-mcp | 6aa6568 | May 08 2026, 03:51 PM |
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-app | 6aa6568 | Commit Preview URL Branch Preview URL |
May 08 2026, 03:52 PM |
|
Claude finished @ved015's task in 57s —— View job Review Complete
Summary: Reviewed the changes to enable the Nova gradient backdrop on mobile. The logic is clean and correct — no bugs, security issues, or breaking changes found. This PR is good to ship. Score: 10/10 |
There was a problem hiding this comment.
Overview: Enables the Nova gradient backdrop on mobile devices and repositions it higher on narrow screens.
Issues found: None — this looks good to ship.
The logic change is straightforward and correct:
showNovaBackdropnow triggers forgraph,list, anddashboardviews regardless of screen size- The gradient position adjustment from 70% to 55% moves the visual effect to a better position on mobile
- Removed variables (
isMemoriesDesktop,isHomeDesktop) were only used for the oldshowNovaBackdropcomputation, so cleanup is appropriate
Score: 10/10
ishaanxgupta
approved these changes
May 8, 2026
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 blue gradient background (Nova tint) was hidden on mobile devices because
showNovaBackdroprequired!isMobile. This made the app appear as plain black on phones.Changes
showNovaBackdropnow includes all view modes (graph,list,dashboard) regardless of screen sizepctNarrowfrom70%to55%so the blue tint appears in the middle-upper area on mobile instead of near the bottomisMemoriesDesktopandisHomeDesktopvariablesBefore
After