Skip to content

Commit 11d1bf7

Browse files
authored
Update src/utils.ts
1 parent a5ff5f4 commit 11d1bf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function getTimeMeasureUtils(maxDelay: number, fnName: string) {
1313
warnIfExceeded() {
1414
if (elapsed > maxDelay) {
1515
console.warn(`${fnName} took ${elapsed}ms, which is more than the warning threshold of ${maxDelay}ms.
16-
If you are passing very large objects into your state, you might to disable the middleware as it might cause too much of a slowdown in development mode.
16+
If your state or actions are very large, you may want to disable the middleware as it might cause too much of a slowdown in development mode. See https://redux-toolkit.js.org/api/getDefaultMiddleware for instructions.
1717
It is disabled in production builds, so you don't need to worry about that.`)
1818
}
1919
}

0 commit comments

Comments
 (0)