From d4afc1eec9706d0027ad4b44421f8868688d1969 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Fri, 1 Oct 2021 22:13:42 +0530 Subject: refactor: move 'DEFAULT_APP_SETTINGS' from 'environment' to 'config' since it doesn't depend on the running process any more. --- src/features/appearance/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/features/appearance') diff --git a/src/features/appearance/index.ts b/src/features/appearance/index.ts index cb2f937eb..bb93507dc 100644 --- a/src/features/appearance/index.ts +++ b/src/features/appearance/index.ts @@ -1,7 +1,6 @@ import color from 'color'; import { reaction } from 'mobx'; -import { iconSizeBias } from '../../config'; -import { DEFAULT_APP_SETTINGS } from '../../environment'; +import { DEFAULT_APP_SETTINGS, iconSizeBias } from '../../config'; const STYLE_ELEMENT_ID = 'custom-appearance-style'; -- cgit v1.2.3-54-g00ecf