Skip to content

Commit 196c8a4

Browse files
committed
fix: remove console.log again
1 parent b99fa13 commit 196c8a4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

package/src/store/apis/addPendingTask.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ export const addPendingTask = async (task: PendingTask) => {
2323
type,
2424
});
2525

26-
const r = await SqliteClient.executeSql.apply(null, query);
27-
console.log('[OFFLINE]: QUERY: ', r);
26+
await SqliteClient.executeSql.apply(null, query);
2827

2928
return async () => {
3029
SqliteClient.logger?.('info', 'deletePendingTaskAfterAddition', {

0 commit comments

Comments
 (0)