Skip to content

Commit 548196c

Browse files
committed
unsafe marker
1 parent 2a92c2f commit 548196c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/datastore/src/letter-repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class LetterRepository {
7070
return LetterSchema.parse(letterDb);
7171
}
7272

73-
async putLetterBatch(letters: InsertLetter[]): Promise<void> {
73+
async unsafePutLetterBatch(letters: InsertLetter[]): Promise<void> {
7474
let lettersDb: Letter[] = [];
7575
for (let i = 0; i < letters.length; i++) {
7676
const letter = letters[i];

0 commit comments

Comments
 (0)