Consolidate deep-link paths to be derived from the same source so they don't get out of sync any more.

This commit is contained in:
2025-07-03 17:01:08 -06:00
parent 1b283a0045
commit 861408c7bc
3 changed files with 54 additions and 57 deletions

View File

@@ -93,7 +93,7 @@ const reportIssue = () => {
// Log the error for analytics
onMounted(() => {
logConsoleAndDb(
`[DeepLink] Error page displayed for path: ${originalPath.value}, code: ${errorCode.value}, params: ${JSON.stringify(route.params)}`,
`[DeepLink] Error page displayed for path: ${originalPath.value}, code: ${errorCode.value}, params: ${JSON.stringify(route.params)}, query: ${JSON.stringify(route.query)}`,
true,
);
});