Skip to content

Commit 9d05c81

Browse files
committed
style: quotes to double quotes
1 parent 83a8972 commit 9d05c81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/plugins/deep-linking/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export default {
175175
isShownKeyFromUrlHashArray(state, urlHashArray) {
176176
// If there are more than 2 segments, treat all segments except the last one as the tag
177177
if (urlHashArray.length > 2) {
178-
urlHashArray = [urlHashArray.slice(0, 1).join('/'), urlHashArray.at(-1)]
178+
urlHashArray = [urlHashArray.slice(0, 1).join("/"), urlHashArray.at(-1)]
179179
}
180180

181181
const [tag, operationId] = urlHashArray

0 commit comments

Comments
 (0)