Skip to content

Commit

Permalink
fix: more server side rendering fixes (#1581)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillich committed Jun 16, 2020
1 parent 294fd83 commit 881a19f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/graphiql/src/components/HeaderEditor.tsx
Expand Up @@ -5,7 +5,6 @@
* LICENSE file in the root directory of this source tree.
*/
import type * as CM from 'codemirror';
import 'codemirror/addon/hint/show-hint';
import React from 'react';

import onHasCompletion from '../utility/onHasCompletion';
Expand Down
3 changes: 2 additions & 1 deletion packages/graphiql/src/components/VariableEditor.tsx
Expand Up @@ -4,9 +4,10 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/// <reference path="../../node_modules/@types/codemirror/addon/hint/show-hint.d.ts" />

import { GraphQLType } from 'graphql';
import type * as CM from 'codemirror';
import 'codemirror/addon/hint/show-hint';
import React from 'react';

import onHasCompletion from '../utility/onHasCompletion';
Expand Down

0 comments on commit 881a19f

Please sign in to comment.