From e8e39d76fe15d5a54eac27ac1991f3a85dd908a9 Mon Sep 17 00:00:00 2001 From: Carlos Miceli Date: Thu, 18 Dec 2025 17:39:30 -0500 Subject: [PATCH 1/2] fix scroll --- src/components/Table/TableBody.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Table/TableBody.tsx b/src/components/Table/TableBody.tsx index 34de7cb99efbb..58abb5f0ee048 100644 --- a/src/components/Table/TableBody.tsx +++ b/src/components/Table/TableBody.tsx @@ -60,7 +60,7 @@ function TableBody({contentContainerStyle, ...props}: TableBodyProps) { return ( // eslint-disable-next-line react/jsx-props-no-spreading - + data={filteredAndSortedData} ListEmptyComponent={isEmptySearchResult ? EmptySearchComponent : ListEmptyComponent} From 9f9f3d715baccaec02e27152624322f81dfa8478 Mon Sep 17 00:00:00 2001 From: Carlos Miceli Date: Thu, 18 Dec 2025 18:10:00 -0500 Subject: [PATCH 2/2] missing semicolin --- src/pages/workspace/companyCards/WorkspaceCompanyCardsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/workspace/companyCards/WorkspaceCompanyCardsPage.tsx b/src/pages/workspace/companyCards/WorkspaceCompanyCardsPage.tsx index 2de8af4376852..8705c25820d34 100644 --- a/src/pages/workspace/companyCards/WorkspaceCompanyCardsPage.tsx +++ b/src/pages/workspace/companyCards/WorkspaceCompanyCardsPage.tsx @@ -52,7 +52,7 @@ function WorkspaceCompanyCardsPage({route}: WorkspaceCompanyCardsPageProps) { const isFeedPending = !!selectedFeedData?.pending; const isFeedAdded = !isFeedPending && !isNoFeed; const [shouldShowOfflineModal, setShouldShowOfflineModal] = useState(false); - const domainOrWorkspaceAccountID = getDomainOrWorkspaceAccountID(workspaceAccountID, selectedFeedData) + const domainOrWorkspaceAccountID = getDomainOrWorkspaceAccountID(workspaceAccountID, selectedFeedData); const {isOffline} = useNetwork({ onReconnect: () => openPolicyCompanyCardsPage(policyID, domainOrWorkspaceAccountID),