Skip to content

Commit 5e129ef

Browse files
committed
Formatting
1 parent a7fd65f commit 5e129ef

File tree

5 files changed

+8997
-5463
lines changed

5 files changed

+8997
-5463
lines changed

demos/example-webpack/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ const openDatabase = async () => {
5858

5959
document.addEventListener('DOMContentLoaded', (event) => {
6060
openDatabase();
61-
});
61+
});

demos/react-supabase-todolist/src/app/views/todo-lists/edit/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ const TodoEditSection = () => {
129129
await createNewTodo(nameInputRef.current!.value);
130130
setShowPrompt(false);
131131
}
132-
}}>
132+
}}
133+
>
133134
<DialogTitle id="alert-dialog-title">{'Create Todo Item'}</DialogTitle>
134135
<DialogContent>
135136
<DialogContentText id="alert-dialog-description">Enter a description for a new todo item</DialogContentText>

demos/react-supabase-todolist/src/app/views/todo-lists/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ export default function TodoListsPage() {
6767
}
6868
}}
6969
aria-labelledby="alert-dialog-title"
70-
aria-describedby="alert-dialog-description">
70+
aria-describedby="alert-dialog-description"
71+
>
7172
<DialogTitle id="alert-dialog-title">{'Create Todo List'}</DialogTitle>
7273
<DialogContent>
7374
<DialogContentText id="alert-dialog-description">Enter a name for a new todo list</DialogContentText>

packages/powersync-sdk-web/src/db/adapters/wa-sqlite/WASQLiteDBAdapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export class WASQLiteDBAdapter extends BaseObserver<DBAdapterListener> implement
105105
const result = await this.workerMethods!.executeBatch!(query, params);
106106
return {
107107
...result,
108-
rows: undefined,
108+
rows: undefined
109109
};
110110
};
111111

0 commit comments

Comments
 (0)