Skip to content

Commit

Permalink
[Merge] : pull request RollingPaper42#14 from RollingPaper42/fix/next…
Browse files Browse the repository at this point in the history
…_build_fail#8

[fix] next build 에러
  • Loading branch information
lamPolar authored Nov 7, 2023
2 parents a448b1b + 3a816a6 commit a57cf49
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ export default function Home() {
<div className=" bg-lime-300">
<div className=" p-5">
{text.map((item) => {
return <ObserveComponent content={item.content}></ObserveComponent>;
return (
<ObserveComponent
key={item.id}
content={item.content}
></ObserveComponent>
);
})}
</div>
</div>
Expand Down

0 comments on commit a57cf49

Please sign in to comment.