Mateus Dal Bianco

Results 11 comments of Mateus Dal Bianco

I had the same problem while working with Gatsby. Checking for `window` before declaring `useAxios` worked. I'm building a custom hook, so it looks like this: ```js if (typeof window...

@miglsoares I agree! I believe there is multi-language support in PsychonautWiki (all data comes from there) but I don't think they are exposed to the API. Our messages though are...

I was having the same issue with `[email protected]`. Just tested with https://github.com/cyrilwanner/next-optimized-images/releases/tag/v3.0.0-canary.0 and it seems to be solved. ```sh yarn add next-optimized-images@^3.0.0-canary.0 ```

You can also try disabling SSR for the component that is using local storage state. In Next.js, for instance, you could do this: ```js import dynamic from 'next/dynamic' const DynamicComponentWithNoSSR...

@saiichihashimoto that is true, although you could also use the `loading` option to load the same component (without state from localstorage) as a placeholder on SSR. Local storage is not...

Put the endpoint in the password field instead, followed by `;`: ``` pgloader -d "mysql://[user]:[password]@[host]:[port]/db" "postgres://default:endpoint=ep-morning-disk-[id];[password]@ep-morning-disk-[id].eu-central-1.postgres.vercel-storage.com:5432/[dbname]?sslmode=require" ``` If you get a parsing error because of the `;`, try creating a...

Try checking your dconf keys at: - `/org/gnome/desktop/wm/keybindings/switch-to-workspace-left` - `/org/gnome/desktop/wm/keybindings/switch-to-workspace-right`

>Thanks! This worked. I'm not familiar with GNOME extension development, but maybe this could be automated by calling the right gsettings set command during installation? Well, mine were already set...

I was able to workaround this by manually calling `mapboxgl.Map.resize()` inside a `useEffect` that also gets triggered when those dimensions change. Maybe this is a clue for a solution.

So this kinda falls into this item? (from the Upgrading docs): >All map controls' props are now strictly aligned with their mapbox-gl counterparts. In heading this direction, we are able...