Skip to content

Commit e3f5fbf

Browse files
fix(core): fix draw collapse (#123)
1 parent ab9770b commit e3f5fbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/devtools/src/context/use-devtools-context.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ export const usePlugins = () => {
3737

3838
createEffect(() => {
3939
if (activePlugin() == null) {
40-
setForceExpand(false)
41-
} else {
4240
setForceExpand(true)
41+
} else {
42+
setForceExpand(false)
4343
}
4444
})
4545

0 commit comments

Comments
 (0)