From babdeed4411c6cb02c627daf207eba25282151fa Mon Sep 17 00:00:00 2001 From: sindri <33976067+isarsindri@users.noreply.github.com> Date: Tue, 3 Mar 2026 12:49:26 +0100 Subject: [PATCH] Refactor draggable initialization to remove cleanup Removed cleanup parameter from draggable initialization. --- src/lib.luau | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.luau b/src/lib.luau index d5c502e..541dfef 100644 --- a/src/lib.luau +++ b/src/lib.luau @@ -23,7 +23,7 @@ local changed = require "./changed" local timeout, update_timeouts = require "./timeout"() local flags = require "./flags" local draggableFactory = require "./draggable" -local draggable = draggableFactory(action, cleanup) +local draggable = draggableFactory(action) local toggle = require "./toggle" local dropdown = require "./dropdown" local tweenFactory = require "./tween"