From 00a84a7db89ed3fac24d2ab81b49780cf6ad7d8b Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 16:02:16 +0000 Subject: [PATCH] refactor: replace template strings with regular string literals Template literals are useful when you need: 1. [Interpolated strings](https://en.wikipedia.org/wiki/String_interpolation). --- examples/remix/app/root.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/remix/app/root.tsx b/examples/remix/app/root.tsx index 26f880a9..17b33bf4 100644 --- a/examples/remix/app/root.tsx +++ b/examples/remix/app/root.tsx @@ -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", }, ];