From e14729006ac3db9de99888bed7fd8ed106ecb519 Mon Sep 17 00:00:00 2001 From: Antoine Chalifour Date: Wed, 2 Oct 2019 16:46:29 +0200 Subject: [PATCH] fix: warning about modules with names differing in casing (#148) --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 7c1c83d..1db2731 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -22,7 +22,7 @@ renderApp(App); // @ts-ignore if (module.hot) { // @ts-ignore - module.hot.accept('./app', () => { + module.hot.accept('./App', () => { renderApp(App); }); }