« get me outta code hell

data: inheritFromContributionPresets: fix not actually exposing - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2026-01-11 07:45:35 -0400
committer(quasar) nebula <qznebula@protonmail.com>2026-01-11 07:45:35 -0400
commit3051e23f1431eb3062563512061dc54b84bbf858 (patch)
tree3dc590c32ec3209c0e4b28336fc939e0dda0ba43 /src/data
parent062d4e6b4089a4cd0254e805e92aeb7b719683d5 (diff)
data: inheritFromContributionPresets: fix not actually exposing
aka we got the inherited value and then DID NOTHING WITH IT
Diffstat (limited to 'src/data')
-rw-r--r--src/data/composite/things/contribution/inheritFromContributionPresets.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/data/composite/things/contribution/inheritFromContributionPresets.js b/src/data/composite/things/contribution/inheritFromContributionPresets.js
index 17387404..1cefae1b 100644
--- a/src/data/composite/things/contribution/inheritFromContributionPresets.js
+++ b/src/data/composite/things/contribution/inheritFromContributionPresets.js
@@ -41,10 +41,8 @@ export default templateCompositeFrom({
       compute: (continuation, {
         ['#values']: values,
         ['#index']: index,
-      }) => continuation({
-        ['#value']:
-          values[index],
-      }),
+      }) =>
+        continuation.exit(values[index]),
     },
   ],
 });