File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- import { CONFIG , ModeType } from '../lib/config'
1+ import { CONFIG , type ModeType } from '../lib/config'
22import { logger } from '../lib/logger'
33import { EnhancerRegistry , TextareaRegistry } from '../lib/registries'
44import { githubPrNewCommentContentScript } from '../playgrounds/github-playground'
@@ -8,7 +8,7 @@ const enhancedTextareas = new TextareaRegistry()
88
99export default defineContentScript ( {
1010 main ( ) {
11- if ( CONFIG . MODE as ModeType === 'PLAYGROUNDS_PR' ) {
11+ if ( ( CONFIG . MODE as ModeType ) === 'PLAYGROUNDS_PR' ) {
1212 githubPrNewCommentContentScript ( )
1313 return
1414 }
Original file line number Diff line number Diff line change 11import hljs from 'highlight.js'
2+ import { logger } from '../../lib/logger'
23import OverType , { type OverTypeInstance } from '../../overtype/overtype'
34import type { CommentEnhancer , CommentSpot } from '../enhancer'
4- import { logger } from '../../lib/logger'
55
66const GITHUB_SPOT_TYPES = [
77 'GH_PR_ADD_COMMENT' ,
You can’t perform that action at this time.
0 commit comments