Skip to content

Commit 6b1be0e

Browse files
committed
chore: fix types
1 parent c2381b6 commit 6b1be0e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/applet/src/modules/custom-inspector/index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ function getInspectorInfo() {
7575
})
7676
rpc.value.getPluginSettings(props.pluginId).then((settings) => {
7777
if (settings.options) {
78+
// @ts-expect-error skip type check
7879
pluginSettings.value = settings
7980
}
8081
else {

packages/applet/src/modules/pinia/index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ onRpcConnected(() => {
4747
const pluginDescriptorId = 'dev.esm.pinia'
4848
rpc.value.getPluginSettings(pluginDescriptorId).then((settings) => {
4949
if (settings.options) {
50+
// @ts-expect-error skip type check
5051
pluginSettings.value = settings
5152
}
5253
else {

0 commit comments

Comments
 (0)