fix: Replace hardcoded workspace data with real Supabase fetch and empty states#425
Open
Ananya-CM wants to merge 1 commit into
Open
fix: Replace hardcoded workspace data with real Supabase fetch and empty states#425Ananya-CM wants to merge 1 commit into
Ananya-CM wants to merge 1 commit into
Conversation
|
@Ananya-CM is attempting to deploy a commit to the shreemp194-gmailcom's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
👋 Thank you for opening this pull request! I will review your changes and assist you soon. |
…pty states [nsoc26]
Ananya-CM
force-pushed
the
fix/workspace-hardcoded-data
branch
from
June 23, 2026 07:47
a27de79 to
3e76a3c
Compare
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.
Summary
Fixed the Workspace page which was displaying
hardcoded fake developers and activity feed
that never changed regardless of real user data.
Changes Made
Only
frontend/app/workspace/page.tsxwas modified:Removed hardcoded
usersarray:Removed hardcoded
activitiesarray:Added
membersandactivitiesstate withloadingstateAdded
useEffectfetching real data from Supabase:profilestable → Active Developers sectionprojectstable → Activity Feed sectionAdded loading skeletons while data fetches
Added clean empty states:
to get started"
Before
After
Screenshots
Files Changed
frontend/app/workspace/page.tsx— only file modifiedIssue
Closes #254
nsoc26