File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/features/components/tools Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -96,21 +96,29 @@ export const ToolsPlayground = (props: ToolsPlaygroundProps) => {
9696 state . id
9797 . replaceAll ( uniqueWord , "" )
9898 . split ( ", " )
99+ . join ( " " )
100+ . split ( " " )
99101 . includes ( initialState ) &&
100102 state . id
101103 . replaceAll ( uniqueWord , "" )
102104 . split ( ", " )
105+ . join ( " " )
106+ . split ( " " )
103107 . some ( ( s ) => finalStates . includes ( s ) )
104108 ? stateInitialFinalColor
105109 : index === 0 &&
106110 state . id
107111 . replaceAll ( uniqueWord , "" )
108112 . split ( ", " )
113+ . join ( " " )
114+ . split ( " " )
109115 . includes ( initialState )
110116 ? stateInitialColor
111117 : state . id
112118 . replaceAll ( uniqueWord , "" )
113119 . split ( ", " )
120+ . join ( " " )
121+ . split ( " " )
114122 . some ( ( s ) => finalStates . includes ( s ) )
115123 ? stateFinalColor
116124 : undefined ,
You can’t perform that action at this time.
0 commit comments