Philipp Page
Philipp Page
Same issue for me only on Windows 10. On Linux and Mac systems it works. `Field "image" must not have a selection since type "String" has no subfields.` Any news...
Downgrading from `"gatsby-plugin-netlify-cms": "^5.4.0"` to `"gatsby-plugin-netlify-cms": "5.3.0"` can be used as a temporary fix.
I also need this. Would be nice to have!
Hey @WuTUT, I worked this around by doing this: ```python melspec_extractor = nn.Sequential( tlibrosa.Spectrogram( hop_length=512, win_length=2048 ), tlibrosa.LogmelFilterBank( sr=sample_rate, n_mels=128, is_log=False, # log10 is not supported by ONNX )) #...
Hi @leandrodamascena, yes, I'm happy to contribute this feature. What are the next steps here?
Cool. Thanks for detailed steps. That all makes sense to me. I'll reach out if something comes up on the way.
@leandrodamascena I submitted above PR for this.
I can confirm that. It re-renders twice on Next.js 14.1.0 and only once on Next.js 14.0.4. Is this possibly related to Next.js starting to support native `window.history.pushState` methods? https://nextjs.org/blog/next-14-1#windowhistorypushstate-and-windowhistoryreplacestate
I understand. Is `useSearchParams` used internally in `nuqs`? I don't use it anywhere in my code.
Got it. I just tested using `useSearchParams` as single "source of truth" for the state and the UI feels less "snappy" because it re-loads the full page before applying the...