diff --git a/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings.tsx b/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings.tsx index 4c9c64dcf3..849c5a9b91 100644 --- a/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings.tsx +++ b/editor.planx.uk/src/pages/FlowEditor/components/Settings/ServiceSettings.tsx @@ -250,11 +250,13 @@ const ServiceSettings: React.FC = () => { statusForm.setFieldValue( "status", - statusForm.values.status == "online" ? "offline" : "online", + statusForm.values.status === "online" + ? "offline" + : "online", ) } /> @@ -267,6 +269,9 @@ const ServiceSettings: React.FC = () => { A service must be online to be accessed by the public, and to enable analytics gathering. + + Offline services can still be edited and published as normal. +