diff --git a/src/components/interpretations/Interpretations.js b/src/components/interpretations/Interpretations.js index 6c8b7022d..b2f7bd477 100644 --- a/src/components/interpretations/Interpretations.js +++ b/src/components/interpretations/Interpretations.js @@ -17,7 +17,10 @@ const Interpretations = () => { useEffect(() => { if (isMapLoaded) { - const urlInterpretationId = getUrlParameter('interpretationid') + // analytics interpretation component uses camelcase + const urlInterpretationId = + getUrlParameter('interpretationid') || + getUrlParameter('interpretationId') if (urlInterpretationId) { dispatch(setInterpretation(urlInterpretationId))