From 06f8975e748144c0873b5a8392e3ac7d76a66119 Mon Sep 17 00:00:00 2001 From: Joe Haddad Date: Fri, 15 May 2020 05:16:36 -0400 Subject: [PATCH] `sync` and `built` are identical commands (#12908) --- packages/next/client/dev/dev-build-watcher.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/next/client/dev/dev-build-watcher.js b/packages/next/client/dev/dev-build-watcher.js index a5628cec96..570e3805be 100644 --- a/packages/next/client/dev/dev-build-watcher.js +++ b/packages/next/client/dev/dev-build-watcher.js @@ -63,6 +63,7 @@ export default function initializeBuildWatcher() { updateContainer() break case 'built': + case 'sync': isBuilding = false // Wait for the fade out transtion to complete timeoutId = setTimeout(() => { -- GitLab