Conversation
✅ Deploy Preview for highestgoodnetwork-dev ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
iAbhi001
self-requested a review
September 9, 2026 19:31
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.



Description
Fixes the Bluesky auto-poster and related social media page issues.
Fixes the Bluesky auto-poster not being used. The Bluesky component was removed from the
PlatformComposerswitch statement when the Reddit auto-poster was added. The previous implementation used anifstatement, but when it was converted to a switch statement, the Bluesky case was inadvertently removed.Fixes the social media tabs page returning a "Page Not Found" error due to an issue with the route.
Fixes social media icons not being found when refreshing the social media tabs page because the icon source paths were missing the required leading
/.Related PRS (if any):
Main changes explained:
src/routes.jsxto remove the exact keyword from the announcements route.src/components/Announcements/index.jsxto add back the Bluesky switch case and correct the source paths for the social media icons.Test Account Setup:
How to test:
npm installandnpm run start:localin the frontend repository to run this PR locally.developmentbranch, runnpm install,npm run build, andnpm startto start the backend server./announcements.a. Verify that the login component is displayed before logging in.
b. Once logged in, verify that the user can disconnect.
c. Verify that the user can create a text post by entering text in the textarea and clicking Post.
d. Verify that the user can create a post with an attached file/image.
e. Verify that the Your Posts section is displayed. Verify that the View button opens the corresponding post in a new tab and that the Delete button functions correctly.
f. Verify that creating and deleting a post is also reflected on the actual Bluesky account.
/announcementspage and verify that the social media icons are still displayed correctly and that no errors occur.Screenshots or videos of changes:
Before:
After:
