Skip to content

Commit 2fd1be8

Browse files
committedNov 27, 2024·
fix(client): add null-safety check when accessing pinia store state, close #707
1 parent 89127ac commit 2fd1be8

File tree

1 file changed

+2
-0
lines changed
  • packages/applet/src/modules/pinia/components/store

1 file changed

+2
-0
lines changed
 

‎packages/applet/src/modules/pinia/components/store/Index.vue

+2
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,8 @@ function onInspectorStateUpdated(_data: string) {
177177
return
178178
179179
const _state = data.state
180+
if (!_state)
181+
return
180182
181183
// @ts-expect-error skip type check
182184
state.value = filterEmptyState({

0 commit comments

Comments
 (0)
Please sign in to comment.