simonhrogers
simonhrogers
I cann see that I can create a macro to do this like so: ``` "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = { resize: function (width, height,...
Hey Barry, Thanks so much for getting back to me so quick! Sorry for not making clear in my second comment – I got this macro working perfectly thanks, in...
Thanks Barry! I’m not well versed in best practices for asset storage – so I was posing a question about how would be best to handle this as much as...
Thanks @nanonano! They don’t refer to it as wrapped, like $ALBT on ETH and $wALBT on BSC/AVAX do explicitly for example – but yes I guess it would count in...
> If you mean getting LP tokens then if would be a trade when you add liquidity, and another trade when you remove liquidity. Thanks Lee! No – I mean...
So I’m fairly sure this is because an update omits any reference to Safari’s requirement for `webkitAudioContext` instead of `AudioContext`. You assign `this.context = new AudioContext();` but without a check...
OK so I did get this working in the end, it was very basic as suspected! ``` window.AudioContext = window.AudioContext || window.webkitAudioContext; this.vm = new VisualizerMicro(); ``` I was assigning...
Would be great to get some input on this – Next.js supports Safari 12+ and I would expect the same to be a consideration from any starter deployed by Sanity....
Hey @gyxoBka – pretty sure what you’re describing is an issue I have experienced. If you are using and components within a layout with page transitions, you need to wrap...