We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 518965c commit 10eff91Copy full SHA for 10eff91
browser-extension/src/entrypoints/content.ts
@@ -9,7 +9,11 @@ const enhancedTextareas = new TextareaRegistry()
9
// Expose for debugging in har:view
10
;(window as any).gitcassoTextareaRegistry = enhancedTextareas
11
12
-function sendEventToBackground(type: 'ENHANCED' | 'DESTROYED', spot: CommentSpot, textarea?: HTMLTextAreaElement): void {
+function sendEventToBackground(
13
+ type: 'ENHANCED' | 'DESTROYED',
14
+ spot: CommentSpot,
15
+ textarea?: HTMLTextAreaElement,
16
+): void {
17
const message: CommentEvent = {
18
spot,
19
type,
0 commit comments