diff --git a/app/soapbox/features/soapbox_config/index.tsx b/app/soapbox/features/soapbox_config/index.tsx index 24ad615a32..fd339cf5cf 100644 --- a/app/soapbox/features/soapbox_config/index.tsx +++ b/app/soapbox/features/soapbox_config/index.tsx @@ -155,7 +155,7 @@ const SoapboxConfig: React.FC = () => { const addStreamItem = (path: ConfigPath, template: Template) => { return () => { - const items = data.getIn(path); + const items = data.getIn(path) || ImmutableList(); setConfig(path, items.push(template)); }; };