@@ -74,7 +74,7 @@ type TasksErrorBodyProps = {
7474const TasksErrorBody :FC < TasksErrorBodyProps > = ( { error, onRetry} ) => {
7575return (
7676< TableRow >
77- < TableCell colSpan = { 4 } className = "text-center" >
77+ < TableCell colSpan = { 5 } className = "text-center" >
7878< div className = "rounded-lg w-full min-h-80 flex items-center justify-center" >
7979< div className = "flex flex-col items-center" >
8080< h3 className = "m-0 font-medium text-content-primary text-base" >
@@ -97,7 +97,7 @@ const TasksErrorBody: FC<TasksErrorBodyProps> = ({ error, onRetry }) => {
9797const TasksEmpty :FC = ( ) => {
9898return (
9999< TableRow >
100- < TableCell colSpan = { 4 } className = "text-center" >
100+ < TableCell colSpan = { 5 } className = "text-center" >
101101< div className = "w-full min-h-80 p-4 flex items-center justify-center" >
102102< div className = "flex flex-col items-center" >
103103< h3 className = "m-0 font-medium text-content-primary text-base" >
@@ -216,6 +216,11 @@ const TasksSkeleton: FC = () => {
216216< TableCell >
217217< AvatarDataSkeleton />
218218</ TableCell >
219+ < TableCell >
220+ < div className = "flex justify-end items-center" >
221+ < Skeleton className = "size-8" />
222+ </ div >
223+ </ TableCell >
219224</ TableRowSkeleton >
220225</ TableLoaderSkeleton >
221226) ;