fix(qr): hardcode API url

This commit is contained in:
Hafid Nur
2026-02-14 18:13:28 +07:00
parent 3aaf022393
commit ce8cb8188c
@@ -1,7 +1,7 @@
import axios from 'axios';
// Define the base URL for the API
const API_URL = import.meta.env.VITE_API_URL || 'http://api-qr.imphnen.dev/api/v1';
const API_URL = 'http://api-qr.imphnen.dev/api/v1';
// Create a configured axios instance
export const api = axios.create({