Skip to content

Commit

Permalink
feat: add placeholder comments
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasheartman committed Sep 30, 2024
1 parent 6188079 commit 6aaba87
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions frontend/src/component/personalDashboard/PersonalDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,21 @@ export const PersonalDashboard = () => {
<StyledHeaderTitle>Your resources</StyledHeaderTitle>
{noProjects ? (
<ContentGridNoProjects
owners={[{ ownerType: 'system' }]}
admins={[
{ name: 'admin' },
{
name: 'Christopher Tompkins',
imageUrl:
'https://avatars.githubusercontent.com/u/1010371?v=4',
},
]}
owners={
// use payload.projectOwners
[{ ownerType: 'system' }]
}
admins={
// use payload.admins
[
{ name: 'admin' },
{
name: 'Christopher Tompkins',
imageUrl:
'https://avatars.githubusercontent.com/u/1010371?v=4',
},
]
}
/>
) : (
<ContentGrid container columns={{ lg: 12, md: 1 }}>
Expand Down

0 comments on commit 6aaba87

Please sign in to comment.