"use client"; import axiosInstance from "@/app/(main)/axios/axiosInstance"; import { NEXT_PUBLIC_API_URL } from "@/config/api"; import type { BomScoreResult } from "./index"; export const fetchBomScoresClient = async (): Promise => { const response = await axiosInstance.get( `${NEXT_PUBLIC_API_URL}/bom/scores`, ); return response.data; };