Skip to content

Commit

Permalink
refactor: rename page
Browse files Browse the repository at this point in the history
  • Loading branch information
ItaloMedici committed Aug 27, 2024
1 parent 27c43b7 commit a25bf7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/(dashboard)/room/[roomId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ interface RoomIdPageProps {
};
}

function RoomIdPage({ params: { roomId } }: RoomIdPageProps) {
async function RoomPage({ params: { roomId } }: RoomIdPageProps) {
return (
<Room roomId={roomId}>
<Board />
</Room>
);
}

export default RoomIdPage;
export default RoomPage;

0 comments on commit a25bf7d

Please sign in to comment.