π Bug Report
Area: Workspace Page
Type: Bug β Hardcoded Static Data
Priority: Medium
π Description
The Workspace page (/workspace) displays
completely hardcoded static content that is
disconnected from any real user or project
data. Every user sees identical fake workspace
information regardless of what they have
actually created in the app.
π Root Cause
frontend/app/workspace/page.tsx contains
hardcoded data arrays and static content
that do not fetch from Supabase or any
real data source.
β Current Behaviour
- Workspace page shows same fake data
for all users
- No connection to real projects, tasks,
or team members
- Content never changes regardless of
user activity
β
Expected Behaviour
- Workspace page should fetch and display
real data for the logged-in user's workspace
- Show actual projects, team members, and
tasks from Supabase
- Show clean empty state when no data exists:
"No workspace data yet. Create a project
to get started."
π‘ Proposed Fix
In frontend/app/workspace/page.tsx:
- Add state for workspace data:
const [workspaceData, setWorkspaceData] =
useState<WorkspaceData | null>(null);
const [loading, setLoading] = useState(true);
-
Fetch real data from Supabase on mount
using authenticated session
-
Show loading skeleton while fetching
-
Show clean empty state if no data found
π File to Change
frontend/app/workspace/page.tsx
@Shriii19
I'd like to work on this issue.
Could you please assign it to me?
nsoc26
π Bug Report
Area: Workspace Page
Type: Bug β Hardcoded Static Data
Priority: Medium
π Description
The Workspace page (
/workspace) displayscompletely hardcoded static content that is
disconnected from any real user or project
data. Every user sees identical fake workspace
information regardless of what they have
actually created in the app.
π Root Cause
frontend/app/workspace/page.tsxcontainshardcoded data arrays and static content
that do not fetch from Supabase or any
real data source.
β Current Behaviour
for all users
or team members
user activity
β Expected Behaviour
real data for the logged-in user's workspace
tasks from Supabase
"No workspace data yet. Create a project
to get started."
π‘ Proposed Fix
In
frontend/app/workspace/page.tsx:Fetch real data from Supabase on mount
using authenticated session
Show loading skeleton while fetching
Show clean empty state if no data found
π File to Change
frontend/app/workspace/page.tsx@Shriii19
I'd like to work on this issue.
Could you please assign it to me?
nsoc26