diff --git a/ts/components/conversation/SessionEmojiPanel.tsx b/ts/components/conversation/SessionEmojiPanel.tsx index 44b519a04..315776103 100644 --- a/ts/components/conversation/SessionEmojiPanel.tsx +++ b/ts/components/conversation/SessionEmojiPanel.tsx @@ -7,8 +7,8 @@ import { useSelector } from 'react-redux'; import { getTheme, isDarkTheme } from '../../state/selectors/theme'; import { FixedBaseEmoji, FixedPickerProps } from '../../types/Reaction'; import { - ColorsType, COLORS, + ColorsType, PrimaryColorStateType, THEMES, ThemeStateType, diff --git a/ts/themes/switchPrimaryColor.tsx b/ts/themes/switchPrimaryColor.tsx index f7ec3ab60..67b660683 100644 --- a/ts/themes/switchPrimaryColor.tsx +++ b/ts/themes/switchPrimaryColor.tsx @@ -1,7 +1,7 @@ import { find } from 'lodash'; import { Dispatch } from '@reduxjs/toolkit'; import { applyPrimaryColor } from '../state/ducks/primaryColor'; -import { ColorsType, COLORS, getPrimaryColors, PrimaryColorStateType } from './constants/colors'; +import { COLORS, ColorsType, getPrimaryColors, PrimaryColorStateType } from './constants/colors'; export function findPrimaryColorId(hexCode: string): PrimaryColorStateType | undefined { const primaryColors = getPrimaryColors();