Skip to content

Commit 125af63

Browse files
committed
fix lint
1 parent 52e4107 commit 125af63

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/dashboard/dashboardPane.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ export const dashboardPane: PaneDefinition = {
2828
)
2929
}
3030

31-
authSession.events.on("login", () => {
31+
authSession.events.on('login', () => {
3232
// console.log('On Login')
3333
runBuildPage()
3434
})
35-
authSession.events.on("sessionRestore", () => {
35+
authSession.events.on('sessionRestore', () => {
3636
// console.log('On Session Restore')
3737
runBuildPage()
3838
})

src/outline/manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ export default function (context) {
490490
})
491491

492492
// close the dashboard if user log out
493-
authSession.events.on("logout", closeDashboard)
493+
authSession.events.on('logout', closeDashboard)
494494

495495
// finally - switch to showing dashboard
496496
outlineContainer.style.display = 'none'

0 commit comments

Comments
 (0)