Skip to content

Commit

Permalink
fix(service marketplace detail): add providerUri in the provider deta…
Browse files Browse the repository at this point in the history
…ils page
  • Loading branch information
saadanzari committed Nov 13, 2024
1 parent 662c893 commit 09480f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ export default function MarketplaceProvider({

const tableData: TableType = {
head: [t('appProvider'), t('website'), t('email'), t('phone')],
body: [[item.provider], [item.website], [item.contactEmail], [item.phone]],
body: [
[item.provider],
[item.providerUri],
[item.contactEmail],
[item.phone],
],
}

return (
Expand Down
1 change: 1 addition & 0 deletions src/features/serviceMarketplace/serviceApiSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export type ServiceRequest = {
serviceTypes: string[]
serviceTypeIds?: string[]
provider: string
providerUri: string
leadPictureUri: string
contactEmail: string
description: string
Expand Down

0 comments on commit 09480f7

Please sign in to comment.