Skip to content

Commit

Permalink
Update export wins endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgain committed Feb 1, 2024
1 parent be6dc8a commit 0611de0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/components/Resource/ExportWins.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { createCollectionResource } from './Resource'

export default createCollectionResource('Export Wins', 'v4/export-win')
export default createCollectionResource('Export Wins', 'v4/export_win')
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const ExportWinsTable = ({ exportWins }) => (
<Table.Cell>{currencyGBP(total_expected_export_value)}</Table.Cell>
<NoWrapCell>{formatMediumDate(date)}</NoWrapCell>
<NoWrapCell>
{formatMediumDate(customer_response.created_on)}
{formatMediumDate(customer_response?.created_on)}
</NoWrapCell>
<NoWrapCell>
{/* TODO: Add target to the link once the path is decided */}
Expand Down

0 comments on commit 0611de0

Please sign in to comment.