From 7ec8778706f79de201c27e9b24461c1ffa74277d Mon Sep 17 00:00:00 2001 From: Tejas Dinkar Date: Tue, 12 Mar 2019 22:06:44 +0530 Subject: [PATCH] Fixing a missing import --- app/isomorphic/components/pages/story.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/isomorphic/components/pages/story.js b/app/isomorphic/components/pages/story.js index 9674573f8..42a5a03cb 100644 --- a/app/isomorphic/components/pages/story.js +++ b/app/isomorphic/components/pages/story.js @@ -3,7 +3,7 @@ import React from "react"; import { InfiniteStoryBase, WithPreview } from "@quintype/components"; import { BlankStory } from "../story-templates/blank"; -import { number, object, shape } from "prop-types"; +import { number, object, shape, any } from "prop-types"; function StoryPageBase({ index, story, otherProp }) { // Can switch to a different template based story-template, or only show a spoiler if index > 0