Skip to content

Commit 12eee0e

Browse files
committed
chore: fix Prettier/ESLint issues in welcome view to unblock publish workflow
1 parent 34b2cef commit 12eee0e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/views/webviews/welcome/welcome.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { ExtensionContext, ViewColumn, Webview, window, Uri } from "vscode"
1+
import { ExtensionContext, ViewColumn, Webview, window, Uri } from 'vscode'
22

33
const WelcomeView = {
4-
title: "Welcome to PullFlow",
5-
type: "welcome-view",
4+
title: 'Welcome to PullFlow',
5+
type: 'welcome-view',
66
}
77

88
export const Welcome = {
@@ -13,17 +13,17 @@ export const Welcome = {
1313
WelcomeView.title,
1414
column
1515
)
16-
panel.iconPath = Uri.joinPath(context.extensionUri, "assets/pullflow.png")
16+
panel.iconPath = Uri.joinPath(context.extensionUri, 'assets/pullflow.png')
1717
panel.webview.html = Welcome.getHtml(panel.webview, context)
1818
panel.reveal(column)
1919
},
2020

2121
getHtml: (webview: Webview, context: ExtensionContext) => {
2222
const assetsPath = webview.asWebviewUri(
23-
Uri.joinPath(context.extensionUri, "assets")
23+
Uri.joinPath(context.extensionUri, 'assets')
2424
)
2525
const stylePath = webview.asWebviewUri(
26-
Uri.joinPath(context.extensionUri, "styles/welcome.css")
26+
Uri.joinPath(context.extensionUri, 'styles/welcome.css')
2727
)
2828

2929
return `<!DOCTYPE html>

0 commit comments

Comments
 (0)