fix: add missing newlines at the end of JSON files; clean up formatting in page components
This commit is contained in:
@@ -19,7 +19,8 @@ export async function AccountNotFound({
|
||||
const t = await getTranslations('common');
|
||||
|
||||
const resolvedTitle = title ?? t('accountNotFoundCard.title');
|
||||
const resolvedDescription = description ?? t('accountNotFoundCard.description');
|
||||
const resolvedDescription =
|
||||
description ?? t('accountNotFoundCard.description');
|
||||
const resolvedButtonLabel = buttonLabel ?? t('accountNotFoundCard.action');
|
||||
|
||||
return (
|
||||
|
||||
@@ -27,7 +27,9 @@ export function CmsPageShell({
|
||||
<TeamAccountLayoutPageHeader
|
||||
account={account}
|
||||
title={title}
|
||||
description={description !== undefined ? description : <AppBreadcrumbs />}
|
||||
description={
|
||||
description !== undefined ? description : <AppBreadcrumbs />
|
||||
}
|
||||
/>
|
||||
|
||||
<PageBody>{children}</PageBody>
|
||||
|
||||
Reference in New Issue
Block a user