From 3db9ea9dd21e31c6dcceb89ac50e18dda9a077c8 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Wed, 21 Sep 2022 11:08:54 -0700 Subject: [PATCH] fix: disable inspect xstate in develop (#4145) --- scripts/develop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/develop.sh b/scripts/develop.sh index 3dc00b4b90..4ee64ca718 100755 --- a/scripts/develop.sh +++ b/scripts/develop.sh @@ -97,7 +97,7 @@ CODER_DEV_SHIM="${PROJECT_ROOT}/scripts/coder-dev.sh" fi # Start the frontend once we have a template up and running - CODER_HOST=http://127.0.0.1:3000 INSPECT_XSTATE=true yarn --cwd=./site dev || kill -INT -$$ & + CODER_HOST=http://127.0.0.1:3000 INSPECT_XSTATE=false yarn --cwd=./site dev || kill -INT -$$ & log log "===================================================================="