Skip to content

Commit 54a7a17

Browse files
committed
fix build
1 parent d904f49 commit 54a7a17

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.dependency-cruiser.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,13 +194,13 @@ module.exports = {
194194
{
195195
name: "no-import-from-controls",
196196
severity: "error",
197-
comment: "do not import controls into helpers, except for prompt control - by full path not from index",
197+
comment: "do not import controls into helpers, except for prompt/please-wait control - by full path not from index",
198198
from: {
199199
path: "src/helpers/"
200200
},
201201
to: {
202202
path: "src/controls",
203-
pathNot: "src/controls/prompt"
203+
pathNot: ["src/controls/prompt", "src/controls/please-wait"]
204204
}
205205
}
206206
],

src/helpers/use-editable-control.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Toast, ToastTitle, Toaster, useId, useToastController } from "@fluentui/react-components";
22
import { useCallback, useState } from "react";
3-
import { PleaseWait } from "../controls";
3+
import { PleaseWait } from "../controls/please-wait";
44
import { useEffectOnlyOnMount, useStateEX } from "./hooks";
55

66
/* Provides useful helpers for tracking if control has changes, and handling the save changes with progress bar and on success/fail messages. */

0 commit comments

Comments
 (0)