Skip to content

Commit 33e5653

Browse files
bukinoshitagabrielmfern
authored andcommitted
fix(all): Template literals (#1819)
1 parent bdeff3f commit 33e5653

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/web/src/app/not-found.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import PageTransition from "@/components/page-transition";
22

33
export const metadata = {
4-
title: `404 Not found`,
4+
title: "404 Not found",
55
alternates: {
6-
canonical: `/not-found`,
6+
canonical: "/not-found",
77
},
88
};
99

packages/react-email/src/cli/commands/export.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export const exportTemplates = async (
142142
}
143143
if (spinner) {
144144
spinner.succeed('Rendered all files');
145-
spinner.text = `Copying static files`;
145+
spinner.text = 'Copying static files';
146146
spinner.render();
147147
}
148148

packages/react-email/src/cli/utils/preview/serve-static-file.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const serveStaticFile = async (
3232

3333
res.statusCode = 500;
3434
res.end(
35-
`Could not read file to be served! Check your terminal for more information.`,
35+
'Could not read file to be served! Check your terminal for more information.',
3636
);
3737
} finally {
3838
fileHandle.close();

0 commit comments

Comments
 (0)