From 3d56875be516d3b7353aa514eb4435a7de5eca9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Wed, 13 Mar 2019 13:51:51 +0100 Subject: [PATCH] Typo --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 01063f573..c91f3e9be 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,5 @@ import createServer from './server' -import ActiviyPub from './activitypub/ActivityPub' +import ActivityPub from './activitypub/ActivityPub' const serverConfig = { port: process.env.GRAPHQL_PORT || 4000 @@ -13,5 +13,5 @@ const server = createServer() server.start(serverConfig, options => { /* eslint-disable-next-line no-console */ console.log(`Server ready at ${process.env.GRAPHQL_URI} 🚀`) - ActiviyPub.init(server) + ActivityPub.init(server) })