diff --git a/src/components/RunList/index.tsx b/src/components/RunList/index.tsx index 0ff6115..65e1c1d 100644 --- a/src/components/RunList/index.tsx +++ b/src/components/RunList/index.tsx @@ -125,7 +125,7 @@ const columns: MRT_ColumnDef[] = [ header: "hash", maxSize: 30, Cell: ({ row }) => { - return row.original.sha1.slice(0, 8); + return row.original.sha1?.slice(0, 8); }, }, {