add empty endpoint array to dev

Signed-off-by: Ryan Brink <5607577+unredundant@users.noreply.github.com>
This commit is contained in:
Ryan Brink
2022-07-17 09:50:50 -06:00
parent 46ddad9647
commit 2489416ab8
+2 -2
View File
@@ -20,8 +20,8 @@ import { apolloExplorerPlugin, ApolloExplorerPage } from '../src/plugin';
createDevApp()
.registerPlugin(apolloExplorerPlugin)
.addPage({
element: <ApolloExplorerPage />,
element: <ApolloExplorerPage endpoints={[]} />,
title: 'Root Page',
path: '/apollo-explorer'
path: '/apollo-explorer',
})
.render();