fix: updated plex_userid to camelcase

This commit is contained in:
2022-08-19 10:49:16 +02:00
parent 74d5868a5c
commit 2fed03a882
5 changed files with 11 additions and 11 deletions

View File

@@ -96,7 +96,7 @@ const router = createRouter({
});
const loggedIn = () => store.getters["user/loggedIn"];
const hasPlexAccount = () => store.getters["user/plexId"] !== null;
const hasPlexAccount = () => store.getters["user/plexUserId"] !== null;
const hamburgerIsOpen = () => store.getters["hamburger/isOpen"];
/* eslint-disable @typescript-eslint/no-explicit-any */