File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
src/page/forum-post/layouts/PostBody/Recomment Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11/** @type {import('next').NextConfig } */
22const nextConfig = {
3- // images: {
4- // domains: [
5- // process.env.NEXT_PUBLIC_DOMAIN,
6- // process.env.NEXT_PUBLIC_TEST_DOMAIN,
7- // process.env.NEXT_PUBLIC_AUTH_DOMAIN,
8- // ],
9- // },
3+ images : {
4+ domains : [
5+ process . env . NEXT_PUBLIC_DOMAIN ,
6+ process . env . NEXT_PUBLIC_TEST_DOMAIN ,
7+ process . env . NEXT_PUBLIC_AUTH_DOMAIN ,
8+ ] ,
9+ } ,
1010} ;
1111
1212module . exports = nextConfig ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ const RecommentList = ({ commentId }: IRecommentListBoxProps) => {
3131 }
3232 >
3333 { recommentList ?. map ( ( recomments ) => (
34- < RecommentListBox >
34+ < RecommentListBox key = { recomments . currentPage } >
3535 { recomments . entity . map ( ( recomment : IRecomment ) => (
3636 < RecommentListItem key = { recomment . id } recomment = { recomment } />
3737 ) ) }
You can’t perform that action at this time.
0 commit comments