Skip to content

Commit 122e5c5

Browse files
committed
Format
1 parent bc98a9e commit 122e5c5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/components/interactive-code-block/on-has-completion.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
* CodeMirror 6 and cm6-graphql handle completions differently and don't require this custom UI.
44
*/
55

6-
export function onHasCompletion(cm: any, data: any, onHintInformationRender?: any) {
6+
export function onHasCompletion(
7+
cm: any,
8+
data: any,
9+
onHintInformationRender?: any,
10+
) {
711
// This function is no longer used with CodeMirror 6
812
// Left as a stub for backwards compatibility
9-
return;
13+
return
1014
}
11-

0 commit comments

Comments
 (0)