diff --git a/ts/state/smart/CustomizingPreferredReactionsModal.tsx b/ts/state/smart/CustomizingPreferredReactionsModal.tsx index 2c5c16851ed..f5ecbdfc284 100644 --- a/ts/state/smart/CustomizingPreferredReactionsModal.tsx +++ b/ts/state/smart/CustomizingPreferredReactionsModal.tsx @@ -25,11 +25,6 @@ export function SmartCustomizingPreferredReactionsModal(): JSX.Element { StateType, ReturnType >(state => getCustomizeModalState(state)); - if (!customizeModalState) { - throw new Error( - ' requires a modal' - ); - } const recentEmojis = useRecentEmojis(); @@ -37,6 +32,12 @@ export function SmartCustomizingPreferredReactionsModal(): JSX.Element { getEmojiSkinTone(state) ); + if (!customizeModalState) { + throw new Error( + ' requires a modal' + ); + } + return (