Skip to content

Commit 1bb396c

Browse files
Merge pull request #1 from leonardoadame/deepsource-autofix-dbeb6a2d
replace `==`/`!=` with `===`/`!==`
2 parents 404db72 + b673c1f commit 1bb396c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/global/Playground/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ export default function Playground({
413413
if (!hasUsageTargetOptions) {
414414
return codeSnippets[usageTarget];
415415
}
416-
if (codeSnippets[usageTarget] == null) {
416+
if (codeSnippets[usageTarget] === null) {
417417
return null;
418418
}
419419
return (

0 commit comments

Comments
 (0)