Skip to content

Commit 4b3b456

Browse files
autofix-ci[bot]jakiestfu
authored andcommitted
ci: apply automated fixes
1 parent b0e037a commit 4b3b456

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/react/basic/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
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>

packages/devtools/src/devtools.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)