RustyDev

Results 16 comments of RustyDev
trafficstars

I created a new slate project using the config above to illustrate the issue. There's an `app` subdirectory under `snippets` with a file in it. After running `yarn build`, the...

I tried this (added the brackets since it's an array) ```javascript plugins: [ new CopyWebpackPlugin([ { from: 'src/snippets/*', to: 'dist/snippets', flatten: true }, { from: 'src/sections/*', to: 'dist/sections', flatten: true...

Thanks, @tshamz. That was a silly error on my part. I'll give this a go. I'm wondering at this point if it makes sense to open a pull request with...

Another option is to read it from window location: ```javascript window.location.search.split('variant=')[1] ``` The url is updated when changing variants. If you're using the starter theme, there's a listener on form...

I was able to fix this based on @rchavik's tip: ```jsx true}> {product.simpleProducts.map((simple) => ( { await selectProductAttribute( `${simple.attributes[0].id}:${simple.attributes[0].value_id}`, ); setVisible(false); }}> {simple.attributes[0].value} ))} ... ```

We're having this issue as well. Any update?