diff --git a/client/src/components/profile/components/time-line.tsx b/client/src/components/profile/components/time-line.tsx index d1ac3063453..f8eb4833576 100644 --- a/client/src/components/profile/components/time-line.tsx +++ b/client/src/components/profile/components/time-line.tsx @@ -243,6 +243,7 @@ function useIdToNameMap(): Map { challenge { fields { slug + blockName } id title @@ -268,11 +269,16 @@ function useIdToNameMap(): Map { // @ts-expect-error Graphql needs typing title, // @ts-expect-error Graphql needs typing - fields: { slug } + fields: { slug, blockName } } } }) => { - idToNameMap.set(id, { challengeTitle: title, challengePath: slug }); + idToNameMap.set(id, { + challengeTitle: `${ + title.includes('Step') ? `${blockName} - ` : '' + }${title}`, + challengePath: slug + }); } ); return idToNameMap;