Flow does not open in Flow designerIssue Flow can not open in the designerThe page never finishes loadingwe get the following error in console log: designer-bundle.min.js?sysparm_substitute=false&version=1.4.36:73313 uncaught at fetchFlowDetailsFromServerSaga SyntaxError: Unexpected token c in JSON at position 0 at JSON.parse () at getServiceCatalogVariablesInputLanguage (https://constellationsandbox.service-now.com/scripts/designer-bundle.min.js?sysparm_substitute=false&version=1.4.36:63544:62) at natLangHtmlComponentInstance (https://constellationsandbox.service-now.com/scripts/designer-bundle.min.js?sysparm_substitute=false&version=1.4.36:63576:48) at https://constellationsandbox.service-now.com/scripts/designer-bundle.min.js?sysparm_substitute=false&version=1.4.36:85578:92 at Array.forEach () at https://constellationsandbox.service-now.com/scripts/designer-bundle.min.js?sysparm_substitute=false&version=1.4.36:85577:21 at https://constellationsandbox.service-now.com/scripts/designer-bundle.min.js?sysparm_substitute=false&version=1.4.36:137532:25 at https://constellationsandbox.service-now.com/scripts/designer-bundle.min.js?sysparm_substitute=false&version=1.4.36:137494:25 CauseThe service catalog flow has a "Get Catalog Variables" action that is referencing a catalog item that no longer exists on the systemand is trying to retrieve the catalog item template for the list of variablesResolutionfrom the client-side stack trace aboveadd a breakpoint above the line where getServiceCatalogVariablesInputLanguage is calledfrom the local scope open the object variable: templateCatalogItemInputyou will see the templateCatalogItemInput.value equals a sys_idthis is where it's breaking because it's expecting a JSON objectchange the value to a blank object "{}"your flow should now open Alternatively, you can import the catalog item it was referencing