Skip to content

Commit

Permalink
fix: remove defaults for Layout
Browse files Browse the repository at this point in the history
  • Loading branch information
sdrejkarz committed May 22, 2024
1 parent b997b3a commit 47c5c0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export type LayoutProps = {

const localUrl = `http://localhost:3000/email-assets`;

export default function Layout({ title = 'title', text = 'text', children = 'children' }: LayoutProps) {
export default function Layout({ title, text, children }: LayoutProps) {
return (
<Html>
<Head>
Expand Down

0 comments on commit 47c5c0e

Please sign in to comment.