From f6eee6b01d8cef2bdb74ea3389d1a329f292b2da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Thu, 25 Apr 2019 12:54:06 +0100 Subject: [PATCH] fix(ui): re-add fetch polyfill for older browsers --- ui/src/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/index.js b/ui/src/index.js index ce468eb79..9e3cf3786 100644 --- a/ui/src/index.js +++ b/ui/src/index.js @@ -1,5 +1,7 @@ // MUST be first thing we import // https://github.com/facebook/create-react-app/blob/master/packages/react-app-polyfill/README.md +// IE is not supported (lacks Proxy) but that pollyfill provides fetch and other needed features +import 'react-app-polyfill/ie11'; import "react-app-polyfill/stable"; import React from "react";