Skip to content

Commit

Permalink
Added correct attribute name
Browse files Browse the repository at this point in the history
  • Loading branch information
TirilS committed Sep 10, 2024
1 parent 4b67a08 commit 6b2ac42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/server/routers/customer/customerAggregation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function createEmployeeForCustomerList(
rowId: employee.email,
rowData: [
{
name: employee.navn,
name: employee.name,
email: employee.email,
image_url: await getStorageUrl(employee.image_key),
user_id: employee.user_id,
Expand Down
2 changes: 1 addition & 1 deletion apps/server/routers/customer/customerTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface BilledCustomerHours {
export interface EmployeeWithPrimaryCustomer {
user_id: string
guid: string
navn: string
name: string
title?: string
link: string
email: string
Expand Down

0 comments on commit 6b2ac42

Please sign in to comment.