Unhandled PromiseRejection Warning:Unhanded promise rejection.This error originated eigher by throw


異歩のお願いを書きましたが、次のようにエラーが発生しました.
Unhandled PromiseRejection Warning:Unhanded promise rejection.This error origined einther by throwing inside of an asynction without a catch block,or by rejecting a promise which wath nohanded with.catch()
理由:プロミスのエラー処理が行われていませんでした.
解決策:catch文を一つ追加する
.catch(err => {
                console.log(err);
            })
解決します!