From 7e01781d4039aa4686ba5c74cea6ec013f1a5dce Mon Sep 17 00:00:00 2001 From: Marco Rodolfi Date: Thu, 22 Jun 2023 11:59:01 +0200 Subject: [PATCH] chore: better order for file picker v2 call --- src/plugin.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin.tsx b/src/plugin.tsx index 7b37771..fc0dcd9 100644 --- a/src/plugin.tsx +++ b/src/plugin.tsx @@ -64,8 +64,8 @@ export interface ServerAPI { openFilePickerV2( startPath: string, includeFiles?: boolean, - filter?: RegExp | ((file: File) => boolean), includeFolders?: boolean, + filter?: RegExp | ((file: File) => boolean), extensions?: string[], showHiddenFiles?: boolean, allowAllFiles?: boolean,