From 62accd555971462dc0ff7eb2a8c516863ed6696b Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 16 Dec 2022 19:22:59 -0600 Subject: [PATCH] Fix import paths --- app/soapbox/features/theme-editor/components/color.tsx | 2 +- app/soapbox/features/theme-editor/components/palette.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/soapbox/features/theme-editor/components/color.tsx b/app/soapbox/features/theme-editor/components/color.tsx index 1e2b6f3c1..79d1c9eb1 100644 --- a/app/soapbox/features/theme-editor/components/color.tsx +++ b/app/soapbox/features/theme-editor/components/color.tsx @@ -1,6 +1,6 @@ import React from 'react'; -import ColorWithPicker from 'soapbox/features/soapbox_config/components/color-with-picker'; +import ColorWithPicker from 'soapbox/features/soapbox-config/components/color-with-picker'; import type { ColorChangeHandler } from 'react-color'; diff --git a/app/soapbox/features/theme-editor/components/palette.tsx b/app/soapbox/features/theme-editor/components/palette.tsx index a8011790f..cbadf019a 100644 --- a/app/soapbox/features/theme-editor/components/palette.tsx +++ b/app/soapbox/features/theme-editor/components/palette.tsx @@ -1,7 +1,7 @@ import React from 'react'; -import compareId from 'soapbox/compare_id'; import { HStack } from 'soapbox/components/ui'; +import { compareId } from 'soapbox/utils/comparators'; import Color from './color';