diff --git a/native/profile/appearance-preferences.react.js b/native/profile/appearance-preferences.react.js --- a/native/profile/appearance-preferences.react.js +++ b/native/profile/appearance-preferences.react.js @@ -16,7 +16,7 @@ import { updateThemeInfoActionType } from '../redux/action-types.js'; import { useSelector } from '../redux/redux-utils.js'; import { type Colors, useColors, useStyles } from '../themes/colors.js'; -import { osCanTheme } from '../types/themes.js'; +import { osCanTheme } from '../themes/theme-utils.js'; const CheckIcon = () => ( <SWMansionIcon diff --git a/native/themes/theme-handler.react.js b/native/themes/theme-handler.react.js --- a/native/themes/theme-handler.react.js +++ b/native/themes/theme-handler.react.js @@ -10,7 +10,7 @@ import { updateThemeInfoActionType } from '../redux/action-types.js'; import { useSelector } from '../redux/redux-utils.js'; -import { osCanTheme } from '../types/themes.js'; +import { osCanTheme } from '../themes/theme-utils.js'; function ThemeHandler(): null { const globalThemeInfo = useSelector(state => state.globalThemeInfo); diff --git a/native/types/themes.js b/native/themes/theme-utils.js rename from native/types/themes.js rename to native/themes/theme-utils.js