Ben Kissi

Results 5 comments of Ben Kissi

Experiencing the same issue after changing to use reacts `createRoot` ``` Does not work ------------------------ const root = createRoot(document.getElementById("root")); root.render( ); ``` ``` This works ------------------- ReactDOM.render( , document.getElementById("root") );...

I had the same issue and solved by installing this gem ```sudo arch -x86_64 gem install ffi``` and then running this in my ios folder ```arch -x86_64 pod install``` After...

@alexandrosk the CustomSessionStorage constructor takes in the values at specific positions. `findSessionsByShopCallback` bind should be the last one in the instance call ``` ... SESSION_STORAGE: new Shopify.Session.CustomSessionStorage( sessionStorage.storeCallback.bind(sessionStorage), sessionStorage.loadCallback.bind(sessionStorage), sessionStorage.deleteCallback.bind(sessionStorage),...

> import Dropzone from "dropzone"; > this line is missing in your npm published package! > oh-buddy Exactly. Error `Dropzone is not defined`

> To add new env variable and use it on the Frontend side you need to register it on `defineConfig({...})` under `vite.config.js` file found in the root directory of frontend....