diff --git a/components/txs-table/index.tsx b/components/txs-table/index.tsx index 674a01c..8772d21 100644 --- a/components/txs-table/index.tsx +++ b/components/txs-table/index.tsx @@ -80,6 +80,14 @@ export function TxsTable() { getSortedRowModel: getSortedRowModel(), }); + if (isPending) { + return "Loading..."; + } + + if (error) { + return "An error ocurred"; + } + return (