fix(SettingsView): 修复messageType变量重复声明的问题

This commit is contained in:
anghunk
2026-01-22 22:38:22 +08:00
parent 43fe456d06
commit 7cae1fd269

View File

@@ -371,7 +371,7 @@ const savingComment = ref(false);
const savingFeature = ref(false);
const loading = ref(false);
const message = ref("");
const messageType messageType = ref<"success" | "error">("success");
const messageType = ref<"success" | "error">("success");
const toastMessage = ref("");
const toastType = ref<"success" | "error">("success");
const toastVisible = ref(false);