Fix test order

This commit is contained in:
Adria Navarro 2024-12-20 11:21:25 +01:00
parent e00002757e
commit 15ad884ac8
1 changed files with 3 additions and 1 deletions

View File

@ -324,7 +324,9 @@ export async function update(
return pickApi(tableId).update(tableId, view)
}
export const isV2 = helpers.views.isV2
export function isV2(view: View | ViewV2) {
return helpers.views.isV2(view)
}
export async function remove(viewId: string): Promise<ViewV2> {
const { tableId } = utils.extractViewInfoFromID(viewId)