ktmouk

Results 13 comments of ktmouk

In my case, This code works fine. but token is saved in YAML format :confused: ```ruby class User < ApplicationRecord include DeviseTokenAuth::Concerns::User serialize :tokens .... end ```

In my case, It was solved by creating a custom plugin. 1. Create Custom Plugin ```javascript // promise-action.js import promiseIpc from 'electron-promise-ipc' // yarn add electron-promise-ipc const DISPATCH = 'promise-action-dispatch'...

@cwirz probably, Your sending request failed (url, data or method is invalid). https://github.com/axios/axios/issues/972 You can use `.catch` for catch the error response. ```javascript const actions = { login ({commit}, data)...

ご要望ありがとうございます! 現状、一般ユーザからRESTFul APIを叩く導線はありませんが、将来的にOAuth経由でAPIが呼び出せるようにする改修を計画していますので、しばしお待ちいただければと思います。:pray:

This library still uses `[email protected]` and this version's Regexp doesn't support `🧑‍🔧`. I think this issue can be fixed by simply updating the version of twemoji-parser to latest version. Example:...

I tried the formula below and the CodeSandbox embed seems to work fine on dev.to now. Has this bug already been fixed? ``` {% embed https://codesandbox.io/embed/relaxed-franklin-mv8rng?fontsize=14&hidenavigation=1&theme=dark %} ```

Probably, This issue have been fixed by https://github.com/growthbook/growthbook/pull/2343.

I also thought the same thing and created the discussion (https://github.com/nextauthjs/next-auth/discussions/9166). I think we need to fix this issue.

Thank you for the quick response! I tested this PR locally, and it appears to have fixed the issue. However, I’m unsure whether calling `use()` during SSR without caching the...

I'm sorry my English was unclear. :cry: What I’m wondering is whether we can solve this problem without caching a Promise (without using the `wrap` function). Of course, React might...