diff --git a/common/src/app/common/features.cljc b/common/src/app/common/features.cljc index 0a250b19fa..9004375b86 100644 --- a/common/src/app/common/features.cljc +++ b/common/src/app/common/features.cljc @@ -242,6 +242,7 @@ (let [not-supported (-> (or source-features #{}) (set/difference destination-features) (set/difference no-migration-features) + (set/difference default-enabled-features) (seq))] (when not-supported (ex/raise :type :restriction @@ -253,6 +254,7 @@ (let [not-supported (-> (or destination-features #{}) (set/difference source-features) (set/difference no-migration-features) + (set/difference default-enabled-features) (seq))] (when not-supported (ex/raise :type :restriction