chore: bump version to 3.0.3 in package.json and update dependencies in pnpm-lock.yaml and pnpm-workspace.yaml (#467)

This commit is contained in:
Giancarlo Buomprisco
2026-03-26 07:40:51 +08:00
committed by GitHub
parent 5dc5ee8f08
commit cc3eb5c554
14 changed files with 673 additions and 648 deletions

View File

@@ -54,15 +54,14 @@ export default async function EmailPage(props: EmailPageProps) {
return (
<Page style={'custom'}>
<PageHeader
displaySidebarTrigger={false}
title={values[id] ?? id}
description={<AppBreadcrumbs values={values} />}
>
<EnvModeSelector mode={mode} />
</PageHeader>
<PageBody className={'flex flex-1 flex-col gap-y-4'}>
<PageHeader
title={values[id] ?? id}
description={<AppBreadcrumbs values={values} />}
>
<EnvModeSelector mode={mode} />
</PageHeader>
<p className={'text-muted-foreground py-1 text-xs'}>
Remember that the below is an approximation of the email. Always test
it in your inbox.{' '}

View File

@@ -29,13 +29,12 @@ export default async function EmailsPage() {
return (
<Page style={'custom'}>
<PageHeader
displaySidebarTrigger={false}
title="Emails"
description={'Manage your application Email templates'}
/>
<PageBody className={'gap-y-8'}>
<PageHeader
title="Emails"
description={'Manage your application Email templates'}
/>
{categories.map((category) => {
const categoryTemplates = templates.filter(
(t) => t.category === category,