From 123bb2f6d03b8987fd10e3f977e189d80c5f5f2a Mon Sep 17 00:00:00 2001 From: William Grant Date: Mon, 17 Oct 2022 15:14:54 +1100 Subject: [PATCH] fix: pass yarn ready --- ts/components/conversation/SessionEmojiPanel.tsx | 2 +- ts/themes/switchPrimaryColor.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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();