diff --git a/surfsense_web/app/dashboard/[search_space_id]/documents/(manage)/components/RowActions.tsx b/surfsense_web/app/dashboard/[search_space_id]/documents/(manage)/components/RowActions.tsx index eb44d114a..5c5a44964 100644 --- a/surfsense_web/app/dashboard/[search_space_id]/documents/(manage)/components/RowActions.tsx +++ b/surfsense_web/app/dashboard/[search_space_id]/documents/(manage)/components/RowActions.tsx @@ -208,7 +208,8 @@ export function RowActions({ Delete document? - This action cannot be undone. This will permanently delete this document from your search space. + This action cannot be undone. This will permanently delete this document from your + search space. diff --git a/surfsense_web/components/homepage/integrations.tsx b/surfsense_web/components/homepage/integrations.tsx index fc250e65b..662387de5 100644 --- a/surfsense_web/components/homepage/integrations.tsx +++ b/surfsense_web/components/homepage/integrations.tsx @@ -73,21 +73,19 @@ function IntegrationCard({ integration }: { integration: Integration }) {
- {integration.name} + {integration.name}
); } @@ -132,7 +130,10 @@ function ScrollingColumn({ )); return ( -
+
{/* Outer div has NO gap — each inner copy uses pb matching the gap so both halves are identical in height → seamless -50% loop */}
{/* Heading */} @@ -203,15 +204,15 @@ export default function ExternalIntegrations() { {/* 5 scrolling columns */}
{COLUMNS.map((column, colIndex) => ( - + ))}
diff --git a/surfsense_web/contracts/enums/connectorIcons.tsx b/surfsense_web/contracts/enums/connectorIcons.tsx index e29e5be6e..c9375a5ca 100644 --- a/surfsense_web/contracts/enums/connectorIcons.tsx +++ b/surfsense_web/contracts/enums/connectorIcons.tsx @@ -15,11 +15,16 @@ import { EnumConnectorName } from "./connector"; export const getConnectorIcon = (connectorType: EnumConnectorName | string, className?: string) => { const iconProps = { className: className || "h-4 w-4" }; - const imgProps = { className: `${className || "h-5 w-5"} select-none pointer-events-none`, width: 20, height: 20, draggable: false as const }; + const imgProps = { + className: `${className || "h-5 w-5"} select-none pointer-events-none`, + width: 20, + height: 20, + draggable: false as const, + }; switch (connectorType) { - case EnumConnectorName.LINKUP_API: - return Linkup; + case EnumConnectorName.LINKUP_API: + return Linkup; case EnumConnectorName.LINEAR_CONNECTOR: return Linear; case EnumConnectorName.GITHUB_CONNECTOR: