Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dclstn committed Apr 7, 2024
1 parent 49ba42f commit 1c67057
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "BetterSnap - Supercharge your Snapchat Web Experience.",
"name": "BetterSnap - Supercharge Snapchat Web.",
"version": "1.3.0",
"description": "Screenshot chats, Save stories & videos, Hide your Bitmoji, and more! Previously known as Better Snapchat.",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const { default: settingsDefault } = migrations;
const settings = settingsDefault.map(({ default: setting }: { default: SettingModule }) => setting);

export default function ModalSettings({ search }: { search: string }) {
const fuse = React.useMemo(() => new Fuse(Object.values(settings), { keys: ['name', 'description'] }), []);
const fuse = React.useMemo(() => new Fuse(settings, { keys: ['name', 'description'] }), []);

const filteredSettings = React.useMemo(() => {
if (search.length > 0) {
Expand Down

0 comments on commit 1c67057

Please sign in to comment.