mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-04-10 12:49:29 +02:00
small fix for search
This commit is contained in:
parent
8dbf7c3405
commit
343353db3b
@ -30,7 +30,8 @@ export default function OtherStuffView() {
|
||||
{allApps
|
||||
.filter(
|
||||
(app) =>
|
||||
app.title.toLocaleLowerCase().includes(search) || app.description.toLocaleLowerCase().includes(search),
|
||||
app.title.toLowerCase().includes(search.toLowerCase()) ||
|
||||
app.description.toLowerCase().includes(search.toLowerCase()),
|
||||
)
|
||||
.map((app) => (
|
||||
<AppCard key={app.id} app={app} onClick={() => useApp(app.id)} />
|
||||
|
Loading…
x
Reference in New Issue
Block a user