hotfix: ts check
This commit is contained in:
parent
8f6e5d73a2
commit
8f14de5108
|
@ -64,10 +64,10 @@ export const useSdStore = createPersistStore<
|
|||
},
|
||||
stabilityRequestCall(data: any) {
|
||||
const accessStore = useAccessStore.getState();
|
||||
let prefix = ApiPath.Stability;
|
||||
let prefix: string = ApiPath.Stability as string;
|
||||
let bearerToken = "";
|
||||
if (accessStore.useCustomConfig) {
|
||||
prefix = accessStore.stabilityUrl || ApiPath.Stability;
|
||||
prefix = accessStore.stabilityUrl || (ApiPath.Stability as string);
|
||||
bearerToken = getBearerToken(accessStore.stabilityApiKey);
|
||||
}
|
||||
if (!bearerToken && accessStore.enabledAccessControl()) {
|
||||
|
|
Loading…
Reference in New Issue