From 9e727ee0c1f64b6f5128001593f75fe5688b3475 Mon Sep 17 00:00:00 2001 From: Stuart Taylor Date: Thu, 27 Oct 2016 23:10:24 +0100 Subject: [PATCH] Fix for CSRF Token issue --- client/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/index.js b/client/index.js index c401c4cc49..c9898d83d0 100644 --- a/client/index.js +++ b/client/index.js @@ -29,7 +29,7 @@ import { const isDev = Rx.config.longStackSupport = debug.enabled('fcc:*'); const log = debug('fcc:client'); const hotReloadTimeout = 2000; -const { csrf: { csrfToken } = {} } = window.__fcc__; +const { csrf: { token: csrfToken } = {} } = window.__fcc__; const DOMContainer = document.getElementById('fcc'); const initialState = isColdStored() ? getColdStorage() :