Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
calebdoxsey committed Dec 26, 2024
1 parent 7e71de9 commit 40655dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,8 @@
}
}
],
"singleQuote": true
"singleQuote": true,
"trailingComma": "all"
},
"renovate": {
"extends": [
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/pages/ConnectForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ const ConnectForm: FC<Props> = () => {
useState(false);

const saveClientCertFromStore = (
value: ClientCertFromStore | undefined
value: ClientCertFromStore | undefined,
): void => {
setConnection({
...connection,
Expand All @@ -272,7 +272,7 @@ const ConnectForm: FC<Props> = () => {
};

const clientCertFiltersSummary = getClientCertFiltersSummary(
connection?.clientCertFromStore
connection?.clientCertFromStore,
);

const saveCertText = (value: string): void => {
Expand Down

0 comments on commit 40655dd

Please sign in to comment.