Skip to content

Commit a0dce0e

Browse files
committed
refactor: cloud prefix deleted
1 parent eba7013 commit a0dce0e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/scripts/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ export class ComfyApp {
10181018

10191019
private showMissingNodesError(missingNodeTypes: MissingNodeType[]) {
10201020
if (useSettingStore().get('Comfy.Workflow.ShowMissingNodesWarning')) {
1021-
useDialogService().showCloudLoadWorkflowWarning({ missingNodeTypes })
1021+
useDialogService().showLoadWorkflowWarning({ missingNodeTypes })
10221022
}
10231023
}
10241024

src/services/dialogService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export type ConfirmationDialogType =
4747
export const useDialogService = () => {
4848
const dialogStore = useDialogStore()
4949

50-
function showCloudLoadWorkflowWarning(
50+
function showLoadWorkflowWarning(
5151
props: ComponentProps<typeof MissingNodesContent>
5252
) {
5353
dialogStore.showDialog({
@@ -539,7 +539,7 @@ export const useDialogService = () => {
539539
}
540540

541541
return {
542-
showCloudLoadWorkflowWarning,
542+
showLoadWorkflowWarning,
543543
showMissingModelsWarning,
544544
showSettingsDialog,
545545
showAboutDialog,

0 commit comments

Comments
 (0)