Skip to content

Commit d926f74

Browse files
committed
Fix insert() return value
1 parent dbc3d86 commit d926f74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/bindings-typescript/src/server/runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ function makeTableView(
343343
const ret = { ...row };
344344
integrate_generated_columns?.(ret, ret_buf);
345345

346-
return { ok: true, val: ret };
346+
return ret;
347347
},
348348
delete: (row: RowType<any>): boolean => {
349349
const writer = new BinaryWriter(4 + baseSize);

0 commit comments

Comments
 (0)