diff --git a/ui/actions/findings/findings-by-resource.adapter.ts b/ui/actions/findings/findings-by-resource.adapter.ts
index e9ba68ab0e..43d074ccbe 100644
--- a/ui/actions/findings/findings-by-resource.adapter.ts
+++ b/ui/actions/findings/findings-by-resource.adapter.ts
@@ -115,8 +115,7 @@ export function adaptFindingsByResourceResponse(
// Resolve provider via scan → provider (include path: scan.provider)
const scanRel = item.relationships?.scan?.data;
const scan = scanRel ? scansDict[scanRel.id] : null;
- const providerRelId =
- scan?.relationships?.provider?.data?.id ?? null;
+ const providerRelId = scan?.relationships?.provider?.data?.id ?? null;
const provider = providerRelId ? providersDict[providerRelId] : null;
const providerAttrs = provider?.attributes || {};
diff --git a/ui/app/(prowler)/_overview/_components/provider-type-selector.tsx b/ui/app/(prowler)/_overview/_components/provider-type-selector.tsx
index 499b585d3f..63d7f61a6f 100644
--- a/ui/app/(prowler)/_overview/_components/provider-type-selector.tsx
+++ b/ui/app/(prowler)/_overview/_components/provider-type-selector.tsx
@@ -190,7 +190,9 @@ export const ProviderTypeSelector = ({
),
)
.filter((type): type is ProviderType => type in PROVIDER_DATA)
- .sort((a, b) => PROVIDER_DATA[a].label.localeCompare(PROVIDER_DATA[b].label));
+ .sort((a, b) =>
+ PROVIDER_DATA[a].label.localeCompare(PROVIDER_DATA[b].label),
+ );
const renderIcon = (providerType: ProviderType) => {
const IconComponent = PROVIDER_DATA[providerType].icon;
diff --git a/ui/components/shadcn/dropdown/action-dropdown.tsx b/ui/components/shadcn/dropdown/action-dropdown.tsx
index 3f7e093fcf..7f4607bbcf 100644
--- a/ui/components/shadcn/dropdown/action-dropdown.tsx
+++ b/ui/components/shadcn/dropdown/action-dropdown.tsx
@@ -41,7 +41,10 @@ export function ActionDropdown({
aria-label={ariaLabel}
className="hover:bg-bg-neutral-tertiary rounded-md p-1 transition-colors"
>
-
+
)}