From 24235f3b6baf98e8eeab461097345ea7089f3492 Mon Sep 17 00:00:00 2001 From: Jill Regan Date: Wed, 18 Feb 2026 16:37:41 -0500 Subject: [PATCH] Fix formatting --- src/utils.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/utils.ts b/src/utils.ts index 7d54916..383e103 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -128,10 +128,10 @@ const loadSecretsViaServiceAccount = async ( let client; try { client = await createClient({ - auth: token, - integrationName: "1Password GitHub Action", - integrationVersion: version, - }); + auth: token, + integrationName: "1Password GitHub Action", + integrationVersion: version, + }); } catch (err) { const message = err instanceof Error ? err.message : String(err); throw new Error(`Service account authentication failed: ${message}`);