Felipe K. De Boni
Felipe K. De Boni
@bibidon replace the following functions: ```javascript getCanonicalRequest: function(signatureSpec) { return qq.format("{}\n{}\n{}\n{}\n{}\n{}", signatureSpec.method, v4.getCanonicalUri(signatureSpec.bucket,signatureSpec.endOfUrl), v4.getCanonicalQueryString(signatureSpec.endOfUrl), signatureSpec.headersStr || "\n", v4.getSignedHeaders(signatureSpec.headerNames), signatureSpec.hashedContent); }, getCanonicalUri: function(bucket, endOfUri) { var path = endOfUri, queryParamIdx =...
> I got the same problem running this through a NextJS app `Cannot use import statement outside a module`. Either the migrations work if I include them as .ts files...
@maartenba @xavierdecoster any updates? It has been down for almost 24 hours...
> > We are migrating off > > Any suggestions for migration options, preferably one that works well with BitBucket pipelines? We are going with Azure Artifacts :)
I just hit this as well. I have a dialog that triggers an alert. Closing both of them at the same time correctly removes `data-scroll-locked="2"` from the body, however `pointer-events:...
I encountered a similar issue involving a component utilizing 'use client' and React.memo. Upon removing the memo, it worked as expected. Unfortunately, identifying the issue required several hours of troubleshooting....
Just faced this one too using Next.js and webpack. The best I could achieve is to force LazyIcon into a different chunk that costs about 17.1kb gzipped due to massive...
@rektdeckard there's a bug, it was working before on 2.1.7, now on 2.1.10 it's completely broken for us. Old code was: ```tsx const DynamicIcon = ({ name, ...props }: DynamicIconProps)...
> Well the issue you hinted at in the code comment can probably be solved with [optimizePackageImports](https://nextjs.org/docs/app/api-reference/config/next-config-js/optimizePackageImports). In dev server in Turbopack and some other bundlers, imported code is not...
> [@yannbf](https://github.com/yannbf) Can confirm this is working great for us :) Are you using App Router? If yes, how are you handling async params when rendering a page with MSW?...