Skip to content

Commit 5196a37

Browse files
committed
fix linting error caused by 8b2133e
1 parent 8b2133e commit 5196a37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/modules/IDE/components/PreviewFrame.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ class PreviewFrame extends React.Component {
241241
// could also pull file from API instead of using bloburl
242242
const blobURL = getBlobUrl(resolvedFile);
243243
this.props.setBlobUrl(resolvedFile, blobURL);
244-
const filePathRegex = new RegExp(filePath, "gi");
244+
const filePathRegex = new RegExp(filePath, 'gi');
245245
newContent = newContent.replace(filePathRegex, blobURL);
246246
}
247247
}

0 commit comments

Comments
 (0)