Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mugikhan committed Apr 18, 2024
1 parent a7fd65f commit 5e129ef
Show file tree
Hide file tree
Showing 5 changed files with 8,997 additions and 5,463 deletions.
2 changes: 1 addition & 1 deletion demos/example-webpack/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ const openDatabase = async () => {

document.addEventListener('DOMContentLoaded', (event) => {
openDatabase();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ const TodoEditSection = () => {
await createNewTodo(nameInputRef.current!.value);
setShowPrompt(false);
}
}}>
}}
>
<DialogTitle id="alert-dialog-title">{'Create Todo Item'}</DialogTitle>
<DialogContent>
<DialogContentText id="alert-dialog-description">Enter a description for a new todo item</DialogContentText>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ export default function TodoListsPage() {
}
}}
aria-labelledby="alert-dialog-title"
aria-describedby="alert-dialog-description">
aria-describedby="alert-dialog-description"
>
<DialogTitle id="alert-dialog-title">{'Create Todo List'}</DialogTitle>
<DialogContent>
<DialogContentText id="alert-dialog-description">Enter a name for a new todo list</DialogContentText>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class WASQLiteDBAdapter extends BaseObserver<DBAdapterListener> implement
const result = await this.workerMethods!.executeBatch!(query, params);
return {
...result,
rows: undefined,
rows: undefined
};
};

Expand Down
Loading

0 comments on commit 5e129ef

Please sign in to comment.