From cee94217a88968bcff310ef9793ac89055d10e8a Mon Sep 17 00:00:00 2001 From: Rishabh Date: Fri, 2 Dec 2022 16:22:59 +0530 Subject: [PATCH] Fixed lint --- ghost/admin/app/components/posts/debug.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ghost/admin/app/components/posts/debug.js b/ghost/admin/app/components/posts/debug.js index 7740a19489..308d5a241e 100644 --- a/ghost/admin/app/components/posts/debug.js +++ b/ghost/admin/app/components/posts/debug.js @@ -20,11 +20,9 @@ export default class Debug extends Component { } get emailError() { - if (this.post.email?.error) { - return { - message: this.post.email.error - } - } + return { + message: this.post.email?.error || 'Failed to send email!' + }; } get emailSettings() {