File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -157,29 +157,29 @@ export const WithLoadingIndicator = (args: TextInputWithTokensProps) => {
157157 < Box display = "grid" sx = { { gap : 3 } } >
158158 < FormControl >
159159 < FormControl . Label > No visual</ FormControl . Label >
160- < TextInputWithTokens tokens = { tokens } onTokenRemove = { onTokenRemove } loading = { loading } { ... args } />
160+ < TextInputWithTokens { ... args } tokens = { tokens } onTokenRemove = { onTokenRemove } loading = { loading } />
161161 </ FormControl >
162162
163163 < FormControl >
164164 < FormControl . Label > Leading visual</ FormControl . Label >
165165 < TextInputWithTokens
166+ { ...args }
166167 tokens = { tokens }
167168 onTokenRemove = { onTokenRemove }
168169 loading = { loading }
169170 leadingVisual = { NumberIcon }
170- { ...args }
171171 />
172172 </ FormControl >
173173
174174 < FormControl >
175175 < FormControl . Label > Both visuals</ FormControl . Label >
176176 < TextInputWithTokens
177+ { ...args }
177178 tokens = { tokens }
178179 onTokenRemove = { onTokenRemove }
179180 loading = { loading }
180181 leadingVisual = { NumberIcon }
181182 trailingVisual = { CheckIcon }
182- { ...args }
183183 />
184184 </ FormControl >
185185 </ Box >
You can’t perform that action at this time.
0 commit comments