style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-03-13 20:12:09 +00:00
parent 441bf990e7
commit 4c5f6196f6
5 changed files with 37 additions and 18 deletions

View file

@ -1,5 +1,8 @@
export const apiConfig = {
baseUrl: (window.location.hostname === "localhost" && !(window.location.port === '80' || window.location.port === '')) ? "http://localhost:3000/api" : window.location.origin + "/api",
baseUrl:
window.location.hostname === "localhost" && !(window.location.port === "80" || window.location.port === "")
? "http://localhost:3000/api"
: window.location.origin + "/api",
};
export const loginRoute = "/login";