Skip to content

Commit 85909cf

Browse files
committed
Fixed unknown commenter defect.
1 parent e0ee033 commit 85909cf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Dates should be in`YYYY-MM-DD` format and versions are in [semantic versioning](
99

1010
- Immediate feedback on database changes.
1111
- Fixed label on confirm buttons.
12+
- Fixed unknown commenter defect.
1213

1314
### Maintenance
1415

src/routes/org/[orgid]/process/[processid]/+page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export async function load({ parent, params }) {
2727
Organization.queryProcessChanges(supabase, org.id),
2828
Organization.queryConcerns(supabase, org.id),
2929
Organization.queryPersonRoles(supabase, org.id, uid),
30-
Organization.queryProfiles(supabase, process.id)
30+
Organization.queryProfiles(supabase, org.id)
3131
]);
3232

3333
if (

0 commit comments

Comments
 (0)