chore: cleanup files (possible RC)

This commit is contained in:
LukeGus
2025-12-29 02:46:52 -06:00
parent 7c850c1072
commit dcbc9454ab
123 changed files with 3521 additions and 4844 deletions

View File

@@ -39,13 +39,11 @@ export function useConfirmation() {
opts: ConfirmationOptions | string,
callback?: () => void,
): Promise<boolean> => {
// Legacy signature support
if (typeof opts === "string" && callback) {
callback();
return Promise.resolve(true);
}
// New Promise-based signature
return Promise.resolve(true);
};