fix: correct tabledata assignment in RichiesteTable component
This commit is contained in:
parent
b6aa423928
commit
44e5a56673
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ type RichiesteTableProps = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const RichiesteTable = ({ data }: RichiesteTableProps) => {
|
export const RichiesteTable = ({ data }: RichiesteTableProps) => {
|
||||||
const tabledata = [...data, ...data, ...data];
|
const tabledata = data;
|
||||||
const columns_titles = {
|
const columns_titles = {
|
||||||
id: "ID Ordine",
|
id: "ID Ordine",
|
||||||
username: "Utente",
|
username: "Utente",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue