Skip to content

Commit

Permalink
fix: fix layout
Browse files Browse the repository at this point in the history
  • Loading branch information
hqer927 committed Sep 12, 2024
1 parent cc6b1e5 commit 21a20ab
Showing 1 changed file with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,14 @@ const CollectionAgreement = () => {
return (
<div className="general-setting-item">
<div className="general-setting-item-title">{t("collect-media-options")}</div>
<div className="join-room-settings">
<Radio.Group value={isAgree} onChange={changeCollectMediaState}>
<Radio value={true}>
<span className="radio-item-inner">{t("collect-media-turn-on")}</span>
</Radio>
<Radio value={false}>
<span className="radio-item-inner">{t("collect-media-turn-off")}</span>
</Radio>
</Radio.Group>
</div>
<Radio.Group value={isAgree} onChange={changeCollectMediaState}>
<Radio value={true}>
<span className="radio-item-inner">{t("collect-media-turn-on")}</span>
</Radio>
<Radio value={false}>
<span className="radio-item-inner">{t("collect-media-turn-off")}</span>
</Radio>
</Radio.Group>
</div>
);
};
Expand Down

0 comments on commit 21a20ab

Please sign in to comment.