We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ce3ecb commit d725735Copy full SHA for d725735
src/app/containers/ActionContainer.tsx
@@ -146,7 +146,7 @@ function ActionContainer(props): JSX.Element {
146
setRecordingActions(!recordingActions);
147
};
148
149
-
+ // Logic to create the components for the route descriptions.
150
// Create a cache that will be an array of all the route paths.
151
const cache = [];
152
for (let i = 0; i < actionsArr.length; i++) {
@@ -211,6 +211,7 @@ function ActionContainer(props): JSX.Element {
211
Clear
212
</button>
213
</div>
214
+ {/* Rendering of the cache2 component */}
215
{Object.keys(cache2).map((element) => {
216
return (
217
<RouteDescription actions = {cache2[element]}></RouteDescription>
0 commit comments