Skip to content

Commit

Permalink
style: apply ESLint rules to fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
zuhno committed Aug 20, 2024
1 parent 32d4c77 commit 32d2e29
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/composables/useCodeClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ export default function useCodeClient(
if (!clientId?.value) {
throw new Error(
toPluginError(
"Set clientId in options or use setClientId to initialize."
)
"Set clientId in options or use setClientId to initialize.",
),
);
}

Expand Down
4 changes: 2 additions & 2 deletions src/composables/useOneTap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ export default function useOneTap(
if (!clientId?.value) {
throw new Error(
toPluginError(
"Set clientId in options or use setClientId to initialize."
)
"Set clientId in options or use setClientId to initialize.",
),
);
}

Expand Down
4 changes: 2 additions & 2 deletions src/composables/useTokenClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ export default function useTokenClient(
if (!clientId?.value) {
throw new Error(
toPluginError(
"Set clientId in options or use setClientId to initialize."
)
"Set clientId in options or use setClientId to initialize.",
),
);
}

Expand Down

0 comments on commit 32d2e29

Please sign in to comment.