Skip to content

Commit 571feae

Browse files
authored
Merge pull request #5892 from unicef/staging
Staging back
2 parents d819e1e + f0946e1 commit 571feae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/frontend/src/containers/tables/rdi/ImportedPeopleTable/ImportedPeopleTableRow.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ export function ImportedPeopleTableRow({
3434
choices.deduplicationGoldenRecordStatusChoices,
3535
);
3636

37-
const individualDetailsPath = `/${baseUrl}/population/individuals/${individual.id}`;
37+
const peopleDetailsPath = `/${baseUrl}/population/people/${individual.id}`;
3838

3939
const handleClick = (): void => {
40-
navigate(individualDetailsPath, {
40+
navigate(peopleDetailsPath, {
4141
state: {
4242
breadcrumbTitle: `Registration Data Import: ${rdi.name}`,
4343
breadcrumbUrl: `/${businessArea}/registration-data-import/${rdi.id}`,
@@ -79,7 +79,7 @@ export function ImportedPeopleTableRow({
7979
data-cy="imported-individuals-row"
8080
>
8181
<TableCell align="left">
82-
<BlackLink to={individualDetailsPath}>{individual.unicefId}</BlackLink>
82+
<BlackLink to={peopleDetailsPath}>{individual.unicefId}</BlackLink>
8383
</TableCell>
8484
<AnonTableCell>{individual.fullName}</AnonTableCell>
8585
<TableCell align="left">{roleChoicesDict[individual.role]}</TableCell>

0 commit comments

Comments
 (0)