@onehat/ui 0.3.305 → 0.3.306

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/ui",
3
- "version": "0.3.305",
3
+ "version": "0.3.306",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -34,10 +34,8 @@ export function login(loginId = null, password = null) {
34
34
  });
35
35
  }
36
36
  export function logout() {
37
- const
38
- baseUrl = Cypress.env('baseUrl'),
39
- baseDir = Cypress.env('baseDir');
40
- getDomNode(baseUrl + baseDir + 'logout').click({ force: true });
37
+ const baseDir = Cypress.env('baseDir');
38
+ getDomNode(baseDir + 'logout').click({ force: true });
41
39
  }
42
40
 
43
41