From 73ac8c4ffd8e6f9557c11294df6e56d5e604a4c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Sun, 23 Jun 2024 07:18:16 +0400 Subject: [PATCH] Move ListComments --- components/konstitisyon/index.js | 2 +- components/konstitisyon/{comments => }/list-comments.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename components/konstitisyon/{comments => }/list-comments.js (98%) diff --git a/components/konstitisyon/index.js b/components/konstitisyon/index.js index db0be53..d458f6f 100644 --- a/components/konstitisyon/index.js +++ b/components/konstitisyon/index.js @@ -12,7 +12,7 @@ import AuthAlert from '../auth-form/auth-alert.js' import Titre from './titre.js' import Article from './article.js' import HandleCreate from './create/handle-create.js' -import ListComments from './comments/list-comments.js' +import ListComments from './list-comments.js' import {formatKonstitisyon} from '@/lib/format.js' const LightTooltip = styled(({className, ...props}) => ( diff --git a/components/konstitisyon/comments/list-comments.js b/components/konstitisyon/list-comments.js similarity index 98% rename from components/konstitisyon/comments/list-comments.js rename to components/konstitisyon/list-comments.js index f193c0b..6d6ee2f 100644 --- a/components/konstitisyon/comments/list-comments.js +++ b/components/konstitisyon/list-comments.js @@ -11,7 +11,7 @@ import Pagination from '@mui/material/Pagination' import Divider from '@mui/material/Divider' import Box from '@mui/material/Box' import {readItems, withToken} from '@directus/sdk' -import LogoutCountdown from '../../session/logout-countdown.js' +import LogoutCountdown from '../session/logout-countdown.js' import {directusClient} from '@/lib/directus.js' import {formatDate} from '@/lib/format.js'