Skip to content

Commit a56315d

Browse files
committed
chore: fix typo & remove debugger statement
1 parent 38d2735 commit a56315d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands/common.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ export async function applyData() {
4242
const $ = await prepare()
4343

4444
// <meta http-equiv="Content-Security-Policy" content="
45+
// ensure unsafe-inline is allowed, custom js is added as `unsafe-inline`
4546
{
4647
const cspMeta = $(`meta[http-equiv="Content-Security-Policy"]`)
4748
const cspContent = cspMeta.attr('content')
@@ -55,7 +56,6 @@ export async function applyData() {
5556
return json
5657
}
5758

58-
debugger
5959
const cspModel = new ContentSecurityPolicy(cspContent)
6060
const parsed = fixJson(cspModel.share('json'))
6161

src/commands/list.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class ListCommand extends Command {
1212
}
1313

1414
interactive = Option.Boolean('-i,--interactive', false, {
15-
description: 'list & slect with an interactive prompt',
15+
description: 'list & select with an interactive prompt',
1616
})
1717

1818
async execute() {

0 commit comments

Comments
 (0)