This commit is contained in:
space-nuko
2023-05-25 01:18:16 -05:00
parent 0fedef30c0
commit f2668072c4

View File

@@ -35,7 +35,7 @@ const store: Writable<ConfigState> = writable(
function getBackendURL(): string {
const state = get(store);
return `${window.location.protocol}://${state.comfyUIHostname}:${state.comfyUIPort}`
return `${window.location.protocol}//${state.comfyUIHostname}:${state.comfyUIPort}`
}
const configStateStore: WritableConfigStateStore =