From 2d8b170a9d0dab58ce9896104b5b2f3366a84e29 Mon Sep 17 00:00:00 2001 From: yezian Date: Wed, 10 Jan 2024 02:14:49 +0800 Subject: [PATCH] fix bug --- src/pages/StreamerInformation/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/StreamerInformation/index.jsx b/src/pages/StreamerInformation/index.jsx index f405f2e..249a13c 100644 --- a/src/pages/StreamerInformation/index.jsx +++ b/src/pages/StreamerInformation/index.jsx @@ -359,7 +359,7 @@ const StreamerInformationContent = () => { alert("请完善信息后提交"); return; } - if (value.wechat_lock_type === 0 && !value.wechat) { + if (value.wechat_lock_type == 0 && !value.wechat) { alert("请填写微信后提交"); return; }