Skip to content

Commit

Permalink
refactor: replace template strings with regular string literals
Browse files Browse the repository at this point in the history
Template literals are useful when you need:  1. [Interpolated strings](https://en.wikipedia.org/wiki/String_interpolation).
  • Loading branch information
deepsource-autofix[bot] authored Jun 19, 2024
1 parent 4ceb630 commit 00a84a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/remix/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Header } from "@repo/shared";
export const meta: MetaFunction = () => [
{
charset: "utf-8",
title: `Blog | React18 Loaders`,
title: "Blog | React18 Loaders",
viewport: "width=device-width,initial-scale=1",
},
];
Expand Down

0 comments on commit 00a84a7

Please sign in to comment.