Fix arrow-parens lint error in GoogleWorkspaceConnector
Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com>
This commit is contained in:
@@ -128,7 +128,7 @@ export function GoogleWorkspaceConnector(props: {
|
|||||||
if (errors?.length) {
|
if (errors?.length) {
|
||||||
toast({
|
toast({
|
||||||
title: __("Error"),
|
title: __("Error"),
|
||||||
description: errors.map((e) => e.message).join(", "),
|
description: errors.map(e => e.message).join(", "),
|
||||||
variant: "error",
|
variant: "error",
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
@@ -173,7 +173,7 @@ export function GoogleWorkspaceConnector(props: {
|
|||||||
if (errors?.length) {
|
if (errors?.length) {
|
||||||
toast({
|
toast({
|
||||||
title: __("Error"),
|
title: __("Error"),
|
||||||
description: errors.map((e) => e.message).join(", "),
|
description: errors.map(e => e.message).join(", "),
|
||||||
variant: "error",
|
variant: "error",
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user