custom table width
This commit is contained in:
@ -5,7 +5,7 @@ import { z } from "zod";
|
||||
import { columns } from "./colums";
|
||||
|
||||
const userSchema = z.object({
|
||||
UserId: z.number()
|
||||
UserId: z.number(),
|
||||
});
|
||||
|
||||
const ChunithmScorePlaylog = async () => {
|
||||
@ -23,10 +23,7 @@ const ChunithmScorePlaylog = async () => {
|
||||
|
||||
const songs = await getSongsWithTitles(TypedUser.data.UserId);
|
||||
|
||||
return (
|
||||
<DataTable columns={columns} data={songs} />
|
||||
|
||||
);
|
||||
return <DataTable columns={columns} data={songs} />;
|
||||
};
|
||||
|
||||
export default ChunithmScorePlaylog;
|
||||
|
Reference in New Issue
Block a user