File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,8 @@ import router from "./router";
3434const { session, restoreSession } = useSolidSession ();
3535const { memberOf } = useSolidProfile ();
3636const isLoggedIn = computed (() => {
37- return !! (
38- (session .webId && ! memberOf ) ||
39- (session .webId && memberOf && session .rdp )
37+ return (
38+ (session .webId && ! (memberOf .value )) || (session .webId && memberOf .value && session .rdp )
4039 );
4140});
4241
Original file line number Diff line number Diff line change @@ -234,6 +234,9 @@ async function getAccessRequestInformationResources(accessInbox: string) {
234234watch (
235235 () => accessInbox .value ,
236236 () => {
237+ if (! accessInbox .value ) {
238+ return ;
239+ }
237240 getAccessRequestInformationResources (accessInbox .value ).then (
238241 (newAccessRequestResources ) =>
239242 accessRequestInformationResources .value .push (
You can’t perform that action at this time.
0 commit comments