File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3939 no visible effect.
4040 -->
4141 < style type ="text/css ">
42- [data-testid = " tanstack_devtools" ] * {
42+ [data-testid = ' tanstack_devtools' ] * {
4343 color : red !important ;
4444 }
4545 </ style >
Original file line number Diff line number Diff line change @@ -188,15 +188,15 @@ export default function DevTools() {
188188 } )
189189 const { theme } = useTheme ( )
190190
191- const [ gooberCss , setGooberCss ] = createSignal ( "" ) ;
191+ const [ gooberCss , setGooberCss ] = createSignal ( '' )
192192 createEffect ( ( ) => {
193193 // Setup mutation observer for goober styles with id `_goober
194194 const gooberStyles = document . querySelector ( '#_goober' )
195195 if ( gooberStyles ) {
196196 setGooberCss ( gooberStyles . textContent )
197197 const observer = new MutationObserver ( ( ) => {
198198 setGooberCss ( gooberStyles . textContent )
199- } )
199+ } )
200200 observer . observe ( gooberStyles , {
201201 childList : true , // observe direct children
202202 subtree : true , // and lower descendants too
You can’t perform that action at this time.
0 commit comments