Explorar el Código

fix import line

Yuki Takei hace 1 año
padre
commit
9836def7ed
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      apps/app/src/client/components/UsersHomepageFooter.tsx

+ 2 - 1
apps/app/src/client/components/UsersHomepageFooter.tsx

@@ -3,11 +3,12 @@ import React, { useState } from 'react';
 import { useTranslation } from 'next-i18next';
 
 import { RecentCreated } from '~/client/components/RecentCreated/RecentCreated';
-import styles from '~/components/UsersHomepageFooter.module.scss';
 import { useCurrentUser } from '~/stores/context';
 
 import { BookmarkFolderTree } from './Bookmarks/BookmarkFolderTree';
 
+import styles from './UsersHomepageFooter.module.scss';
+
 type UsersHomepageFooterProps = {
   creatorId: string;
 };