You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/containers/ActionContainer.tsx
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,10 @@ function ActionContainer(props): JSX.Element {
62
62
obj.stateSnapshot.children[0].state&&// with a 'state'
63
63
obj.stateSnapshot.children[0].name// and a 'name'
64
64
){
65
-
constnewObj: Record<string,unknown>={// we create a new Record object (whose property keys are Keys and whose property values are Type. This utility can be used to map the properties of a type to another type) and populate it's properties with relevant values from our argument 'obj'.
65
+
constnewObj: Record<string,unknown>={
66
+
// we create a new Record object (whose property keys are Keys and whose property values are Type.
67
+
//This utility can be used to map the properties of a type to another type) and populate it's properties with
0 commit comments