Fix arrow-parens lint error in GoogleWorkspaceConnector

Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com>
This commit is contained in:
Aurélien Sibiril
2026-04-13 19:19:20 +02:00
parent a3bb5423a8
commit d990d566a8

View File

@@ -128,7 +128,7 @@ export function GoogleWorkspaceConnector(props: {
if (errors?.length) {
toast({
title: __("Error"),
description: errors.map((e) => e.message).join(", "),
description: errors.map(e => e.message).join(", "),
variant: "error",
});
return;
@@ -173,7 +173,7 @@ export function GoogleWorkspaceConnector(props: {
if (errors?.length) {
toast({
title: __("Error"),
description: errors.map((e) => e.message).join(", "),
description: errors.map(e => e.message).join(", "),
variant: "error",
});
return;