From 5a2419c2050569c485b5742cf7b9886fd84500ca Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Mon, 17 Mar 2025 16:32:38 +0700 Subject: [PATCH] fix: wrong path --- src/stores/manual/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/manual/index.ts b/src/stores/manual/index.ts index 4c961291..fef42284 100644 --- a/src/stores/manual/index.ts +++ b/src/stores/manual/index.ts @@ -3,9 +3,9 @@ import { defineStore } from 'pinia'; import { api } from 'src/boot/axios'; import { getToken } from 'src/services/keycloak'; import { Manual } from './types'; +import { baseUrl } from '../utils'; const ENDPOINT = 'manual'; -const baseUrl = '/api/v1'; export async function getManual() { const res = await api.get(`/${ENDPOINT}`);