diff --git a/apps/web/components/apps/AllApps.tsx b/apps/web/components/apps/AllApps.tsx index 0b760d25..31e6eb53 100644 --- a/apps/web/components/apps/AllApps.tsx +++ b/apps/web/components/apps/AllApps.tsx @@ -9,7 +9,7 @@ export default function AllApps({ apps }: { apps: App[] }) { return (

{t("all_apps")}

-
+
{apps.map((app) => (

All {router.query.category} apps

-
+
{appStore.map((app) => { return ( app.category === router.query.category && ( diff --git a/apps/web/pages/apps/installed.tsx b/apps/web/pages/apps/installed.tsx index 54ef5aa0..baab06da 100644 --- a/apps/web/pages/apps/installed.tsx +++ b/apps/web/pages/apps/installed.tsx @@ -15,6 +15,7 @@ import { HttpError } from "@lib/core/http/error"; import { useLocale } from "@lib/hooks/useLocale"; import { trpc } from "@lib/trpc"; +import AppsShell from "@components/AppsShell"; import { ClientSuspense } from "@components/ClientSuspense"; import { List, ListItem, ListItemText, ListItemTitle } from "@components/List"; import Loader from "@components/Loader"; @@ -307,13 +308,15 @@ export default function IntegrationsPage() { return ( - }> - - - - - - + + }> + + + + + + + ); }