From 90cd3471125cb8ef15a68776e7c436fcb90305f4 Mon Sep 17 00:00:00 2001 From: Alex Berg Date: Fri, 19 Jan 2018 01:25:20 -0600 Subject: [PATCH] Fix typo --- src/runtime/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/index.ts b/src/runtime/index.ts index 77ab99a..c30a89d 100644 --- a/src/runtime/index.ts +++ b/src/runtime/index.ts @@ -73,7 +73,7 @@ function prepare_route(Component: ComponentConstructor, data: RouteData) { return { Component, data }; } - if (!component && window.__SAComponentPPER__ && window.__SAPPER__.preloaded) { + if (!component && window.__SAPPER__ && window.__SAPPER__.preloaded) { return { Component, data: Object.assign(data, window.__SAPPER__.preloaded) }; }