Skip to content

Commit

Permalink
Fix implied type bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmueller committed Sep 9, 2024
1 parent 136744a commit 9b2e781
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export default class SpacedEverythingPlugin extends Plugin {
const noteContexts = frontmatter?.['se-contexts'] || [];

// Check if any of the note's contexts match the active contexts
return noteContexts.some(noteContext => activeContexts.includes(noteContext));
return noteContexts.some((noteContext: string) => activeContexts.includes(noteContext));
});
}

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "spaced-everything",
"name": "Spaced everything",
"version": "1.0.3",
"version": "1.0.4",
"minAppVersion": "1.6.7",
"description": "Apply spaced repetition algorithms to everything in your vault.",
"author": "Zach Mueller",
Expand Down

0 comments on commit 9b2e781

Please sign in to comment.