Skip to content

Commit 517d4cd

Browse files
ci: apply automated fixes
1 parent e413d8a commit 517d4cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/electric-db-collection/src/electric.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ function createElectricSync<T extends Row<unknown>>(
883883
}
884884

885885
rowTagSet.add(tag)
886-
addTagToIndex(parsedTag, rowId, tagIndex, tagLength)
886+
addTagToIndex(parsedTag, rowId, tagIndex, tagLength)
887887
}
888888
}
889889

@@ -1015,7 +1015,7 @@ function createElectricSync<T extends Row<unknown>>(
10151015
begin: () => void,
10161016
write: (message: Omit<ChangeMessage<T>, `key`>) => void,
10171017
transactionStarted: boolean,
1018-
transactionState: Map<RowId, T>
1018+
transactionState: Map<RowId, T>,
10191019
): boolean => {
10201020
if (tagLength === undefined) {
10211021
debug(
@@ -1342,7 +1342,7 @@ function createElectricSync<T extends Row<unknown>>(
13421342
begin,
13431343
write,
13441344
transactionStarted,
1345-
transactionState
1345+
transactionState,
13461346
)
13471347
}
13481348
} else if (isMustRefetchMessage(message)) {
@@ -1411,7 +1411,7 @@ function createElectricSync<T extends Row<unknown>>(
14111411
begin,
14121412
write,
14131413
transactionStarted,
1414-
transactionState
1414+
transactionState,
14151415
)
14161416
}
14171417
}

0 commit comments

Comments
 (0)