From a162f66b3079acc3c93811124356d9d7a4bfb43d Mon Sep 17 00:00:00 2001 From: Cypro Freelance <110410268+Proxyy587@users.noreply.github.com> Date: Wed, 31 Jul 2024 01:17:39 +0530 Subject: [PATCH] vulnerabilties spelling i suck --- app/(auth)/admin/vulnerabilities/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(auth)/admin/vulnerabilities/page.tsx b/app/(auth)/admin/vulnerabilities/page.tsx index 2be8082..eef7dfa 100644 --- a/app/(auth)/admin/vulnerabilities/page.tsx +++ b/app/(auth)/admin/vulnerabilities/page.tsx @@ -57,7 +57,7 @@ const AdminLogPage = () => { const fetchLogs = async () => { try { - const response = await fetch("/api/vulnerabilties", { method: "GET" }); + const response = await fetch("/api/vulnerabilities", { method: "GET" }); if (response.ok) { const data: LogEntry[] = await response.json(); setLogs(data);