Matt Budz

Results 10 comments of Matt Budz

@mattbrictson you can also add `notice: I18n.t('devise.sessions.signed_out')` to show the successful sign out message ```ruby return redirect_to after_sign_out_path_for(resource_name), status: :see_other, notice: I18n.t('devise.sessions.signed_out') ```

I fixed this by adding a sessions controller: ```ruby class SessionsController < Devise::SessionsController def destroy super do return redirect_to new_user_session_path, notice: I18n.t('devise.sessions.signed_out'), status: :see_other end end end ```

Ahh found my answer in the release notes: https://github.com/panoply/vscode-liquid/releases/tag/v3.0.0 I removed the old 2.3.0 settings and pasted in: ```json "liquid.engine": "shopify", "liquid.config.baseUrl": ".", "liquid.settings.target": "workspace", "liquid.completion.tags": true, "liquid.completion.objects": true, "liquid.completion.filters":...

This helped out a ton `order.deep_clone(order_items: :extra)` although, it should be `order.deep_clone(order_items: :extras)` Thanks a lot for this gem!

This is not isolated to webpack. I can confirm this error occurs when using `4.1.0-rc.0` from CDN's also.

If I save the `select2.js` or the `select2.min.js` file from the CDN and add it to webpack as a pack or module, there is no error and it works as...

Updating to the current pg 1.4.5 solves the issue for me

It would be great to pass in a partial that contains the layout of the custom tooltip. ``

I'm seeing the same issue with: - VSCode: 1.73.0 - Prettier: 2.7.1 - plugin-ruby: 3.2.2 - plugin-erb: 0.4.0

I would run into this all the time. At first, I set a schedule where my app would refresh the token once every N days but it would still catch...