feat: add notes

This commit is contained in:
zhom
2025-11-30 10:45:39 +04:00
parent 2c7c07c414
commit 5947ec14e6
9 changed files with 401 additions and 93 deletions
+2 -2
View File
@@ -676,8 +676,8 @@ export default function Home() {
// Search in profile name
if (profile.name.toLowerCase().includes(query)) return true;
// Search in browser name
if (profile.browser.toLowerCase().includes(query)) return true;
// Search in note
if (profile.note?.toLowerCase().includes(query)) return true;
// Search in tags
if (profile.tags?.some((tag) => tag.toLowerCase().includes(query)))