feat: Move editor apperance preferences to "Appearance" tab

This commit is contained in:
Aman Harwara
2022-12-01 00:09:55 +05:30
parent 9b3f11d85b
commit 0e886bf0f1
5 changed files with 56 additions and 82 deletions

View File

@@ -14,6 +14,7 @@ import PreferencesGroup from '../PreferencesComponents/PreferencesGroup'
import PreferencesSegment from '../PreferencesComponents/PreferencesSegment'
import { PremiumFeatureIconName } from '@/Components/Icon/PremiumFeatureIcon'
import { PrefDefaults } from '@/Constants/PrefDefaults'
import EditorAppearance from './Appearance/EditorAppearance'
type Props = {
application: WebApplication
@@ -145,6 +146,7 @@ const Appearance: FunctionComponent<Props> = ({ application }) => {
</div>
</PreferencesSegment>
</PreferencesGroup>
<EditorAppearance application={application} />
</PreferencesPane>
)
}