From 4fb0852505bba321844688be587e936f0d6af428 Mon Sep 17 00:00:00 2001 From: Levent Deniz <32421538+leventdeniz@users.noreply.github.com> Date: Fri, 24 Feb 2023 01:19:52 +0100 Subject: [PATCH] [CAL-1125] Fix app detail page heading size (#7257) * [CAL-1125] Fix app detail page heading size * [CAL-1125] Fix margin on back button in shell * [CAL-1125] Fix shell-margin for mobile --------- Co-authored-by: Levent Deniz --- apps/web/components/apps/App.tsx | 9 ++++++--- packages/features/shell/Shell.tsx | 8 ++++++-- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/apps/web/components/apps/App.tsx b/apps/web/components/apps/App.tsx index 529836ea8d..faa13acbf3 100644 --- a/apps/web/components/apps/App.tsx +++ b/apps/web/components/apps/App.tsx @@ -303,6 +303,11 @@ const Component = ({ ); }; +const ShellHeading = () => { + const { t } = useLocale(); + return {t("app_store")}; +}; + export default function App(props: { name: string; description: AppType["description"]; @@ -328,10 +333,8 @@ export default function App(props: { images?: string[]; isTemplate?: boolean; }) { - const { t } = useLocale(); - return ( - + } backPath="/apps" withoutSeo> -
+
{!!props.backPath && (