+ {type === "sign-in" && form.formState.errors?.email && (
+
-
No user found
+
Invalid email or password
)}
diff --git a/ui/components/scans/index.ts b/ui/components/scans/index.ts
index 98157857ab0..aa42edfe3c3 100644
--- a/ui/components/scans/index.ts
+++ b/ui/components/scans/index.ts
@@ -2,4 +2,3 @@ export * from "./button-refresh-data";
export * from "./link-to-findings-from-scan";
export * from "./no-providers-added";
export * from "./no-providers-connected";
-export * from "./scan-warning-bar";
diff --git a/ui/components/scans/scan-warning-bar.tsx b/ui/components/scans/scan-warning-bar.tsx
deleted file mode 100644
index 4c9acbb9783..00000000000
--- a/ui/components/scans/scan-warning-bar.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-"use client";
-
-import { InfoIcon } from "../icons";
-
-export const ScanWarningBar = () => {
- return (
-
-
-
-
Waiting for Your Scan to Show Up?
-
- It may take a few minutes for the scan to appear on the table and be
- displayed.
-
-
-
- );
-};
diff --git a/ui/components/scans/table/scan-detail.tsx b/ui/components/scans/table/scan-detail.tsx
index 6e9c3e288c2..7307ff53f02 100644
--- a/ui/components/scans/table/scan-detail.tsx
+++ b/ui/components/scans/table/scan-detail.tsx
@@ -117,11 +117,9 @@ export const ScanDetail = ({
- {scan.next_scan_at && (
-
-
-
- )}
+
+
+
diff --git a/ui/components/scans/table/scans/column-get-scans.tsx b/ui/components/scans/table/scans/column-get-scans.tsx
index 55087a0e666..72a70f93119 100644
--- a/ui/components/scans/table/scans/column-get-scans.tsx
+++ b/ui/components/scans/table/scans/column-get-scans.tsx
@@ -123,13 +123,13 @@ export const ColumnGetScans: ColumnDef