Fix various inter-linkings of public report paths

This commit is contained in:
Eli Ribble 2026-04-28 06:53:58 +00:00
parent 8bdd18649d
commit 4ae0410930
No known key found for this signature in database
7 changed files with 22 additions and 7 deletions

View file

@ -41,6 +41,14 @@ export function useRoutes() {
},
};
};
const StatusByID = (publicID: string): RouteLocationRaw => {
return {
name: ROUTE_NAMES.STATUS_BY_ID,
params: {
public_id: publicID,
},
};
};
return {
ComplianceAddress,
ComplianceComplete,
@ -52,5 +60,6 @@ export function useRoutes() {
ComplianceProcess,
ComplianceSubmit,
RegisterNotificationsComplete,
StatusByID,
};
}