Skip to content

Commit 444b411

Browse files
committed
fix: Updating param from useNewTransformer to transformationsUI
1 parent 7b86275 commit 444b411

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/lib/picker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ export interface PickerOptions {
690690
/**
691691
* Whether to use the new transformations UI. Defaults to `false`.
692692
*/
693-
useNewTransformer?: boolean;
693+
transformationsUI?: boolean;
694694
/**
695695
* Options for local file uploads.
696696
*/

src/schema/picker.schema.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,9 @@ export const PickerParamsSchema = {
303303
type: 'object',
304304
additionalProperties: false,
305305
properties: {
306+
config: {
307+
type: 'object',
308+
},
306309
circle: {
307310
type: 'boolean',
308311
},
@@ -443,7 +446,7 @@ export const PickerParamsSchema = {
443446
useSentryBreadcrumbs: {
444447
type: 'boolean',
445448
},
446-
useNewTransformer: {
449+
transformationsUI: {
447450
type: 'boolean',
448451
},
449452
pasteMode: {

0 commit comments

Comments
 (0)