Client: About: fix

This commit is contained in:
Viktor Fomin 2022-11-24 05:39:20 +05:00
parent f52ec4e467
commit 6a93ed476e

View File

@ -242,12 +242,12 @@ export default inject(({ auth }) => {
const { settingsStore, userStore } = auth;
const { theme, companyInfoSettingsData, whiteLabelLogoUrls } = settingsStore;
const { user } = userStore;
const { userTheme } = userStore;
return {
theme,
companyInfoSettingsData,
whiteLabelLogoUrls,
userTheme: user?.theme,
userTheme,
};
})(observer(AboutContent));