Skip to content

Commit

Permalink
Merge branch 'feat/post/recomment', remote-tracking branch 'origin'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubinquitous committed Oct 2, 2023
1 parent 96efb54 commit 8e7181d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
// images: {
// domains: [
// process.env.NEXT_PUBLIC_DOMAIN,
// process.env.NEXT_PUBLIC_TEST_DOMAIN,
// process.env.NEXT_PUBLIC_AUTH_DOMAIN,
// ],
// },
images: {
domains: [
process.env.NEXT_PUBLIC_DOMAIN,
process.env.NEXT_PUBLIC_TEST_DOMAIN,
process.env.NEXT_PUBLIC_AUTH_DOMAIN,
],
},
};

module.exports = nextConfig;
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const RecommentList = ({ commentId }: IRecommentListBoxProps) => {
}
>
{recommentList?.map((recomments) => (
<RecommentListBox>
<RecommentListBox key={recomments.currentPage}>
{recomments.entity.map((recomment: IRecomment) => (
<RecommentListItem key={recomment.id} recomment={recomment} />
))}
Expand Down

0 comments on commit 8e7181d

Please sign in to comment.