Skip to content

Commit 8fc29a8

Browse files
committed
fix: remove unnecessary escape characters in CloudArchitecture section
Fixes ESLint no-useless-escape errors on line 117 of CloudArchitecture.tsx. The backslash-escaped double quotes inside a single-quoted string literal are unnecessary and caused the CI lint check to fail.
1 parent 3871006 commit 8fc29a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/features/devops/components/sections/CloudArchitecture.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const CloudArchitecture: React.FC = () => {
114114
},
115115
{
116116
name: 'Circuit Breaker',
117-
desc: 'Stop calling a failing service. After N failures, \"open\" the circuit and return fallback. Periodically test if the service recovered.',
117+
desc: 'Stop calling a failing service. After N failures, "open" the circuit and return fallback. Periodically test if the service recovered.',
118118
useCase: 'Preventing cascade failures in distributed systems',
119119
},
120120
{

0 commit comments

Comments
 (0)