Skip to content

Commit

Permalink
23.12.126: auth process env fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dlohvinov committed Dec 18, 2023
1 parent 8da0ca5 commit 23af5f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webitel/ui-sdk",
"version": "23.12.122",
"version": "23.12.126",
"private": false,
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Userinfo/components/the-auth.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<script>
import AuthAPI from '../api/auth';
const authURL = process?.env?.VUE_APP_AUTH_MODULE_URL || import.meta.env.VITE_AUTH_MODE_URL;
const authURL = process ? process.env.VUE_APP_AUTH_MODULE_URL : import.meta.env.VITE_AUTH_MODE_URL;
export default {
name: 'Auth',
Expand Down

0 comments on commit 23af5f5

Please sign in to comment.