Skip to content

Commit a13fb93

Browse files
committed
added clarifying psuedocode logic to StateRoute file
1 parent 11a8bb2 commit a13fb93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/components/StateRoute.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ const StateRoute = (props: StateRouteProps) => {
6969
return <div className="noState">{NO_STATE_MSG}</div>;
7070
};
7171

72-
// the hierarchy gets set on the first click in the page
72+
// the hierarchy gets set upon the first click on the page
7373
// when the page is refreshed we may not have a hierarchy, so we need to check if hierarchy was initialized
74-
// if true invoke render chart with hierarchy
74+
// if true, we invoke teh D3 render chart with hierarchy
7575
const renderHistory = () => {
7676
if (hierarchy) {
7777
return (

0 commit comments

Comments
 (0)