-
-
Notifications
You must be signed in to change notification settings - Fork 172
Fixes to responsive styling #1325
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
Merged
NiallJoeMaher
merged 11 commits into
codu-code:develop
from
NiallJoeMaher:feat/layout-updates
Jan 10, 2026
Merged
Changes from 7 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
83de791
feat(editor): add new PostEditor component and E2E test infrastructure
NiallJoeMaher b7bc6f5
style: standardize formatting and clean up whitespace across multiple…
NiallJoeMaher 0461ac4
feat(editor): enhance CreateContent component with improved data hand…
NiallJoeMaher 8a91495
feat: update UnifiedContentCard to display author username conditiona…
NiallJoeMaher 3a48106
feat: update layout and styling for ArticlesPage, FeedPage, Home, and…
NiallJoeMaher 08e1703
style: refine layout and styling for FeedFilters component
NiallJoeMaher cdfed10
test: enhance article sorting and visibility checks in e2e tests
NiallJoeMaher f5773b4
fix: resolve ESLint errors and E2E test
NiallJoeMaher 9fbc686
Add journal entry for lowly gunslinger migration (version 7)
NiallJoeMaher 44bf94d
style: format JSON structure in 0017_snapshot.json and _journal.json …
NiallJoeMaher fd557fb
fix: make migration 0017 idempotent for CI compatibility
NiallJoeMaher File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
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.
Replace
networkidlewith explicit waits.The use of
waitForLoadState("networkidle")violates project conventions and is flagged by the linter. Based on learnings,networkidleis unreliable in this codebase due to ongoing background requests.🔧 Proposed fix
Replace the networkidle wait with an explicit wait for the saved items to be present:
Alternatively, if you expect the saved list to always contain items after bookmarking, you could wait for the first article directly:
Based on learnings,
networkidleis unreliable in end-to-end tests.📝 Committable suggestion
🧰 Tools
🪛 GitHub Actions: Code Quality Checks
[error] 55-55: Playwright: Unexpected use of networkidle (Playwright rule violation).
🪛 GitHub Check: Run ESLint and Prettier
[failure] 55-55:
Unexpected use of networkidle
🤖 Prompt for AI Agents