mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-23 12:31:54 +00:00
fix: remove console log and linter errors
This commit is contained in:
@@ -96,7 +96,6 @@ export const getServices = async ({}) => {
|
||||
}
|
||||
}
|
||||
|
||||
console.log(parsedData);
|
||||
revalidatePath("/services");
|
||||
return parsedData;
|
||||
};
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import { Spacer } from "@nextui-org/react";
|
||||
import { redirect } from "next/navigation";
|
||||
import { Suspense } from "react";
|
||||
|
||||
import { getServices } from "@/actions/services";
|
||||
@@ -35,7 +34,7 @@ const SSRServiceGrid = async ({
|
||||
}: {
|
||||
searchParams: SearchParamsProps;
|
||||
}) => {
|
||||
const servicesData = await getServices( searchParams );
|
||||
const servicesData = await getServices(searchParams);
|
||||
const [services] = await Promise.all([servicesData]);
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user