Skip to content

Commit

Permalink
Fix bug for not import correct packages after (apollographql#3089)
Browse files Browse the repository at this point in the history
Fixing my stupid bug that do not import correct package name after rename accept & boom to new namespace
  • Loading branch information
taina0407 authored and Tai NA committed Jul 30, 2019
1 parent 6bde0c1 commit b56e833
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/apollo-server-hapi/src/ApolloServer.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import hapi from 'hapi';
import { parseAll } from 'accept';
import { parseAll } from '@hapi/accept';
import {
renderPlaygroundPage,
RenderPageOptions as PlaygroundRenderPageOptions,
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo-server-hapi/src/hapiApollo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Boom from 'boom';
import Boom from '@hapi/boom';
import { Server, Request, RouteOptions } from 'hapi';
import {
GraphQLOptions,
Expand Down

0 comments on commit b56e833

Please sign in to comment.