From 24a37cb44bc35fd5599e9e7b84405d558d6f03a3 Mon Sep 17 00:00:00 2001 From: Sukka Date: Thu, 28 Apr 2022 23:07:09 +0800 Subject: [PATCH] chore: replace `git.io` form debug message (#1145) --- extension/src/app/api/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/src/app/api/index.ts b/extension/src/app/api/index.ts index eecb73c9..e0e6c3a9 100644 --- a/extension/src/app/api/index.ts +++ b/extension/src/app/api/index.ts @@ -56,7 +56,7 @@ function stringify(obj: unknown, serialize?: Serialize | undefined) { // 16 MB /* eslint-disable no-console */ console.warn( - 'Application state or actions payloads are too large making Redux DevTools serialization slow and consuming a lot of memory. See https://git.io/fpcP5 on how to configure it.' + 'Application state or actions payloads are too large making Redux DevTools serialization slow and consuming a lot of memory. See https://github.com/reduxjs/redux-devtools-extension/blob/master/docs/Troubleshooting.md#excessive-use-of-memory-and-cpu on how to configure it.' ); /* eslint-enable no-console */ stringifyWarned = true;