small styling fix

This commit is contained in:
polaris 2024-06-29 15:26:59 -04:00
parent 4e3938e87e
commit 4fd54e5b4a
2 changed files with 3 additions and 2 deletions

View File

@ -2,8 +2,10 @@ import ChunithmScorePlaylog from "@/components/scoreplaylog/page";
const ChunithmPage = () => {
return (
<div className="p-10">
<ChunithmScorePlaylog/>
</div>
);
};

View File

@ -24,9 +24,8 @@ const ChunithmScorePlaylog = async () => {
const songs = await getSongsWithTitles(TypedUser.data.UserId);
return (
<div className="p-10">
<DataTable columns={columns} data={songs} />
</div>
);
};