From 3c64afb12c950798deb289ed5838b52b1056961b Mon Sep 17 00:00:00 2001 From: RobPruzan Date: Fri, 17 Jan 2025 10:22:27 -0500 Subject: [PATCH] chore: add back scan in kitchen sink example --- packages/kitchen-sink/src/index.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/kitchen-sink/src/index.jsx b/packages/kitchen-sink/src/index.jsx index 5e96e003..86dfe7b6 100644 --- a/packages/kitchen-sink/src/index.jsx +++ b/packages/kitchen-sink/src/index.jsx @@ -4,13 +4,13 @@ import { scan } from 'react-scan'; // force production build import './styles.css'; -// scan({ -// enabled: true, -// dangerouslyForceRunInProduction: true, -// // monitor: { -// // url: 'https://localhost:3000/api/scan', -// // }, -// }); +scan({ + enabled: true, + dangerouslyForceRunInProduction: true, + // monitor: { + // url: 'https://localhost:3000/api/scan', + // }, +}); const TooltipContext = createContext({ tooltip: '' });