fix beta dot showing up when beta is disabled

pull/21833/head
Michael Telatynski 2021-04-30 12:32:42 +01:00
parent d2959e1acc
commit 042ca65806
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ class GroupFilterPanel extends React.Component {
});
let betaDot;
if (!SettingsStore.getValue("feature_spaces") && !localStorage.getItem("mx_seenSpacesBeta")) {
if (SettingsStore.getBetaInfo("feature_spaces") && !localStorage.getItem("mx_seenSpacesBeta")) {
betaDot = <div className="mx_BetaDot" />;
}