From 4f87018e61c749d37aa662bdda5746f6195e83ea Mon Sep 17 00:00:00 2001 From: Haileyesus Date: Sat, 31 Jan 2026 15:30:54 +0300 Subject: [PATCH] refactor: update import path for IS_PLATFORM constant to use config file --- src/utils/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/api.js b/src/utils/api.js index 72c7674..c423875 100644 --- a/src/utils/api.js +++ b/src/utils/api.js @@ -1,4 +1,4 @@ -import { IS_PLATFORM } from "../../shared/modelConstants"; +import { IS_PLATFORM } from "../constants/config"; // Utility function for authenticated API calls export const authenticatedFetch = (url, options = {}) => {