Random fixes

This commit is contained in:
Natsumi
2025-11-15 02:58:13 +11:00
parent cd2312bee1
commit 8f16f15443
2 changed files with 9 additions and 9 deletions

View File

@@ -758,7 +758,7 @@ export const useUserStore = defineStore('User', () => {
* @param {string} userId
*/
function showUserDialog(userId) {
if (!userId) {
if (!userId || typeof userId !== 'string') {
return;
}
const D = userDialog.value;