Skip to content

Commit 3889797

Browse files
committed
switch from single quotes to double quotes for consistency
1 parent 391ad8f commit 3889797

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api/addServer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ export async function addServer(
6767
if (typeof prefix !== "undefined") {
6868
if (prefix) {
6969
var pathPrefix = prefix.trim();
70-
if (pathPrefix.charAt(0) !== '/') {
71-
pathPrefix = '/' + pathPrefix;
70+
if (pathPrefix.charAt(0) !== "/") {
71+
pathPrefix = "/" + pathPrefix;
7272
}
7373
spec.webServer.pathPrefix = pathPrefix;
7474
}

0 commit comments

Comments
 (0)