From da12e3bfb60e8f1371321f3c3eaaa3d98ad9f0e5 Mon Sep 17 00:00:00 2001 From: jinhojang6 Date: Sat, 28 Sep 2024 01:37:29 +0900 Subject: [PATCH] fix: fix build error --- src/pages/operators/[id].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/operators/[id].tsx b/src/pages/operators/[id].tsx index c8fc8b3e0b..246304b7dd 100644 --- a/src/pages/operators/[id].tsx +++ b/src/pages/operators/[id].tsx @@ -21,7 +21,7 @@ export async function getStaticPaths() { const paths: any = [] // get operators id from data - const operatorIds = getAllIds(operators) + const operatorIds = getAllIds(operators as any) // create paths with operator id operatorIds.forEach((id: any) => {