diff --git a/packages/modals-collection/src/apps/app-select-modal.tsx b/packages/modals-collection/src/apps/app-select-modal.tsx index f6d7f2f50..f09f71d71 100644 --- a/packages/modals-collection/src/apps/app-select-modal.tsx +++ b/packages/modals-collection/src/apps/app-select-modal.tsx @@ -1,5 +1,4 @@ import { useMemo, useState } from "react"; -import Image from "next/image"; import { Button, Card, Center, Grid, Input, Stack, Text } from "@mantine/core"; import { IconPlus, IconSearch } from "@tabler/icons-react"; @@ -23,7 +22,7 @@ export const AppSelectModal = createModal(({ actions, inner () => apps .filter((app) => app.name.toLowerCase().includes(search.toLowerCase())) - .sort((a, b) => a.name.localeCompare(b.name)), + .sort((appA, appB) => appA.name.localeCompare(appB.name)), [apps, search], ); @@ -88,7 +87,7 @@ export const AppSelectModal = createModal(({ actions, inner
- {app.name} + {app.name}
{app.name}