Skip to content

Commit

Permalink
fix: import error
Browse files Browse the repository at this point in the history
  • Loading branch information
terwer committed Mar 21, 2024
1 parent aa068bb commit f105b1d
Showing 1 changed file with 5 additions and 6 deletions.
Expand Up @@ -15,11 +15,10 @@ import { useExternalPicGoSetting } from "@/stores/useExternalPicGoSetting.ts"
import { SiyuanPicGo } from "@/utils/siyuanPicgo.ts"
import { useBundledPicGoSetting } from "@/stores/useBundledPicGoSetting.ts"
const { t } = useVueI18n()
const { getBundledPicGoSetting } = useBundledPicGoSetting()
const { getExternalPicGoSetting } = useExternalPicGoSetting()
const { t } = useVueI18n()
const siyuanPicgo = await SiyuanPicGo.getInstance()
const ctx = siyuanPicgo.ctx()
const bundledPicGoSettingForm = getBundledPicGoSetting(ctx)
Expand All @@ -29,17 +28,17 @@ const formData = reactive({
picgoTypeList: [
{
value: PicgoTypeEnum.Bundled,
label: t("upload.adaptor.bundled")
label: t("upload.adaptor.bundled"),
},
{
value: PicgoTypeEnum.App,
label: t("upload.adaptor.app")
}
label: t("upload.adaptor.app"),
},
// {
// value: PicgoTypeEnum.Core,
// label: t("upload.adaptor.core"),
// },
]
],
})
const handlePicgoTypeChange = (val: any) => {
Expand Down

0 comments on commit f105b1d

Please sign in to comment.