@@ -29,7 +29,7 @@ import { textInputStyle, buttonStyle, commentStyle } from '../style'
2929// eslint-disable-next-line camelcase
3030import { Quad_Object } from 'rdflib/lib/tf-types'
3131import { BlankNode , IndexedFormula , NamedNode , st , Statement , sym } from 'rdflib'
32- import { authn , AppDetails , AuthenticationContext , solidLogicSingleton , offlineTestID , typeIndexLogic , authSession , getSuggestedIssuers } from 'solid-logic'
32+ import { authn , AppDetails , AuthenticationContext , solidLogicSingleton , authUtil , typeIndexLogic , authSession , getSuggestedIssuers } from 'solid-logic'
3333import { utils } from '../utils/index'
3434
3535/**
@@ -384,7 +384,7 @@ function signInOrSignUpBox (
384384 } )
385385
386386 signInPopUpButton . addEventListener ( 'click' , ( ) => {
387- const offline = offlineTestID ( )
387+ const offline = authUtil . offlineTestID ( )
388388 if ( offline ) return setUserCallback ( offline . uri )
389389
390390 renderSignInPopup ( dom )
@@ -564,7 +564,7 @@ export function loginStatusBox (
564564 } = { }
565565) : HTMLElement {
566566 // 20190630
567- let me = offlineTestID ( )
567+ let me = authUtil . offlineTestID ( )
568568 // @@ TODO Remove the need to cast HTML element to any
569569 const box : any = dom . createElement ( 'div' )
570570
@@ -706,7 +706,7 @@ export function selectWorkspace (
706706 const noun = appDetails . noun
707707 const appPathSegment = appDetails . appPathSegment
708708
709- const me = offlineTestID ( )
709+ const me = authUtil . offlineTestID ( )
710710 const box = dom . createElement ( 'div' )
711711 let context : AuthenticationContext = { me : me , dom : dom , div : box }
712712
0 commit comments