Dean Clatworthy

Results 29 comments of Dean Clatworthy

This obviously should be a configuration option further down the line, but I was wondering if we could simply over-ride the route. I couldn't get that working. Your solution is...

Hi Frank. Maybe you could share your code so others can see how you approached this? Or even better, maybe you could commit a PR in the form of a...

We started encountering this error in production with very low volumes of traffic (a few requests an hour). Our use-case is very basic. The Cloudwatch Client is initialised at the...

``` const client = new SSM(); let secret; const handler = async (event) => { if (secret === undefined) { secret = await client.getSecretValue(params); } // Use the secret. }...

I'd also like to help translate to English. @artoh Could you provide some guidance on where to start? I found the english translation file - should I just slowly work...

I have the same issue. But this is not consistently happening.

@kalinchernev thanks for the quick reply. In fact, `pages/index.js` should be using the layout by default as you are using the `gatsby-plugin-layout` plugin. I am specifically not using the loading...

Hi @kalinchernev - I tested this using your code. So it's a fresh checkout of your repo with the steps provided in the original issue applied. Basically any component that...

@kalinchernev I made a branch here in a fork to show you what the problem is: https://github.com/deanc/using-i18n/tree/bug Note I only changed these few lines: https://github.com/deanc/using-i18n/commit/59cc5f2fe770b82fbd8f14def2c5e9b3eae2692a You should be able to...

That seems to have done the trick @kalinchernev . Thanks! Should I submit a PR to the repo with this or would you like to take care of it?