Grant

Results 42 comments of Grant

Also, it looks like there are a lot of restrictions for the free api key.

Also having this problem

It still works with guzzle version 6.3.0.

In my `PUT` action, if I return `Inertia::location($mySecondModalUrl)` it does load the second modal page without immediately going to the base url. Not ideal, but it achieves the functionality.

Do you mean 1 route = 1 base url? Because my modals are on different routes.

Or one modal per base route is more accurate. My modals are on different routes, but they all share the same base url.

Sure, I will try recreate it

I'm aliasing axios, so everything that needs it is using the same version. ```js export default defineConfig({ resolve: { alias: { axios: path.resolve(__dirname, 'node_modules/axios/dist/axios.js'), } }, // }) ```

@lumore Not if you use an alias as mentioned in my [previous comment](https://github.com/lepikhinb/momentum-modal/issues/27#issuecomment-1280791739). I encountered an issue with Axios interceptors as discussed [here](https://github.com/inertiajs/inertia/discussions/1241), and if you correctly alias Axios, it...