itube-specs 0.0.615 → 0.0.616

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.
@@ -2,7 +2,6 @@ import { FeatureFlags } from '~/config/featureFlags.config';
2
2
 
3
3
  export function useNavigationItems() {
4
4
  const { favoritesLink } = useFavorites();
5
-
6
5
  const navigationItems = computed(() => {
7
6
  const favLink = favoritesLink.value ?? '';
8
7
 
@@ -125,7 +125,7 @@ export const useUser = (apiService) => {
125
125
  };
126
126
 
127
127
  return {
128
- isAuthorized: computed(() => import.meta.client && !!useCookie('jwtoken').value),
128
+ isAuthorized: computed(() => !!useCookie('jwtoken').value),
129
129
  register,
130
130
  login,
131
131
  password,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.615",
4
+ "version": "0.0.616",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {