Skip to content

Commit 7af7d74

Browse files
authored
Merge pull request codeharborhub#2407 from CodeHarborHub/deepsource-autofix-f0eaeab2
refactor: replace template strings with regular string literals
2 parents 44c27eb + 30f0da6 commit 7af7d74

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/HomePage/vanilla-tilt.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ class VanillaTilt {
346346
"top": "50%",
347347
"left": "50%",
348348
"pointer-events": "none",
349-
"background-image": `linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%)`,
349+
"background-image": "linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%)",
350350
"transform": "rotate(180deg) translate(-50%, -50%)",
351351
"transform-origin": "0% 0%",
352352
"opacity": "0"

src/pages/Roadmap.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function RoadMap() {
77

88
return (
99
<Layout
10-
title={`RoadMap for Learning`}
10+
title={"RoadMap for Learning"}
1111
description="RoadMap for Learning"
1212
>
1313
<main>

0 commit comments

Comments
 (0)