From a72a6b7d2f84180c9a571e17cff5647da72889ca Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Thu, 5 Oct 2023 10:38:40 -0700 Subject: [PATCH] Add forward slash to local JS import (#1924) --- reflex/.templates/web/pages/_app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/.templates/web/pages/_app.js b/reflex/.templates/web/pages/_app.js index ea7a0e0d3..e158f5e2b 100644 --- a/reflex/.templates/web/pages/_app.js +++ b/reflex/.templates/web/pages/_app.js @@ -2,7 +2,7 @@ import { ChakraProvider, extendTheme } from "@chakra-ui/react"; import { Global, css } from "@emotion/react"; import theme from "/utils/theme"; import { clientStorage, initialEvents, initialState, StateContext, EventLoopContext } from "/utils/context.js"; -import { useEventLoop } from "utils/state"; +import { useEventLoop } from "/utils/state"; import '/styles/styles.css'