diff --git a/web/components/admin/MainLayout.tsx b/web/components/admin/MainLayout.tsx index 1924193fc..6763f11d5 100644 --- a/web/components/admin/MainLayout.tsx +++ b/web/components/admin/MainLayout.tsx @@ -31,8 +31,6 @@ import { TEXTFIELD_PROPS_STREAM_TITLE } from '../../utils/config-constants'; import { ComposeFederatedPost } from './ComposeFederatedPost'; import { UpdateArgs } from '../../types/config-section'; -import FediverseIcon from '../../assets/images/fediverse-black.png'; - export type MainLayoutProps = { children: ReactNode; }; @@ -206,7 +204,7 @@ export const MainLayout: FC = ({ children }) => { icon: ( fediverse icon diff --git a/web/components/modals/AuthModal/AuthModal.tsx b/web/components/modals/AuthModal/AuthModal.tsx index 28c765ba8..ac681dcd7 100644 --- a/web/components/modals/AuthModal/AuthModal.tsx +++ b/web/components/modals/AuthModal/AuthModal.tsx @@ -4,9 +4,6 @@ import { FC } from 'react'; import { IndieAuthModal } from '../IndieAuthModal/IndieAuthModal'; import { FediAuthModal } from '../FediAuthModal/FediAuthModal'; -import FediverseIcon from '../../../assets/images/fediverse-black.png'; -import IndieAuthIcon from '../../../assets/images/indieauth.png'; - import styles from './AuthModal.module.scss'; import { currentUserAtom, @@ -35,7 +32,7 @@ export const AuthModal: FC = ({ forceTabs }) => { const indieAuthTabTitle = ( - IndieAuth + IndieAuth IndieAuth ); @@ -50,7 +47,7 @@ export const AuthModal: FC = ({ forceTabs }) => { const fediAuthTabTitle = ( - Fediverse auth + Fediverse auth FediAuth ); diff --git a/web/assets/images/fediverse-black.png b/web/public/img/fediverse-black.png similarity index 100% rename from web/assets/images/fediverse-black.png rename to web/public/img/fediverse-black.png diff --git a/web/assets/images/indieauth.png b/web/public/img/indieauth.png similarity index 100% rename from web/assets/images/indieauth.png rename to web/public/img/indieauth.png