Skip to content

Commit

Permalink
remove sketchpad
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeating authored May 16, 2024
1 parent 681a4b0 commit 646ebf2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/lib/OmniBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
{#if $omniText !== ''}
<button
aria-label="Clear Search"
class="bg-transparent flex items-center px-2 py-1.5"
class="bg-transparent flex items-center px-2 leading-none"
style="color: #404856;"
on:click={() => {
$omniText = '';
Expand Down
14 changes: 7 additions & 7 deletions src/lib/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ Don't forget to follow the project on 𝕏 at @nvAuxApp and let us know what you
createdAt: new Date().getTime(),
updatedAt: new Date().getTime()
});
await db.notes.insert({
guid: '00000000-0000-0000-0000-111111111111',
name: 'Sketch Pad Demo',
body: 'Use this demo note to test out the sketch pad feature.',
createdAt: new Date().getTime(),
updatedAt: new Date().getTime()
});
// await db.notes.insert({
// guid: '00000000-0000-0000-0000-111111111111',
// name: 'Sketch Pad Demo',
// body: 'Use this demo note to test out the sketch pad feature.',
// createdAt: new Date().getTime(),
// updatedAt: new Date().getTime()
// });
};


Expand Down

0 comments on commit 646ebf2

Please sign in to comment.