From da91bb503f9eb7cffda93e01871ff1724000af4c Mon Sep 17 00:00:00 2001 From: Eric Abruzzese Date: Fri, 5 Apr 2024 11:33:33 -0400 Subject: [PATCH] Fix a mismatched colspan for the app list on the Source details page (#777) --- src/ui/shared/app/app-list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/shared/app/app-list.tsx b/src/ui/shared/app/app-list.tsx index 8464e3c5b..56d60cb4d 100644 --- a/src/ui/shared/app/app-list.tsx +++ b/src/ui/shared/app/app-list.tsx @@ -511,7 +511,7 @@ export const AppListBySource = ({ - {paginated.data.length === 0 ? : null} + {paginated.data.length === 0 ? : null} {paginated.data.map((app) => ( ))}