-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
言語コード、例文、例文の訳の受け取り #110
base: dev
Are you sure you want to change the base?
言語コード、例文、例文の訳の受け取り #110
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ESLint found more than 10 potential problems in the proposed changes. Check the Files changed tab for more details.
} catch (error) { | ||
if (isAxiosError(error)) { | ||
const res = error.response as AxiosResponse<apiReturn, any>; | ||
return {success: false, content: '', errorMessage: res.data.message, status: res.status}; | ||
const res = error.response as AxiosResponse<ApiErrorResponse, any>; |
Check warning
Code scanning / ESLint
Disallow the `any` type Warning
ひとつTODOがありますが、おおまかな実装は完了しました。TODOに関してはUI変更が必要そうですが、現在ゆーほさんが取り組まれている追加・編集モーダルの実装、また例文のレスポンスが3つになる等で、UIに関して新たな変更がありそうなので、それに合わせて今後取り組む感じで問題ないと考えています。 |
また、ゆーほさんが取り組まれている追加・編集モーダルの実装とコンフリクトが起きると思われます。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hatano-yota
自分の環境だと、元々exTransがなかったみたいなのでundefined
になってしまいます。
一旦devに切り替えて新しくカードを作ってから作業ブランチに戻る手順で同じ現象が起こるか確かめてみてください
例文訳の部分をバックスペース長押しするとこのような挙動になります。
編集する時は1つのテキストボックスから改行区切りで例文と訳を取得しているのが操作しにくかったりバグの原因になるからテキストボックスを2つに分けた方がいいのかも
#79