Skip to content

Commit 40655dd

Browse files
committed
fix lint
1 parent 7e71de9 commit 40655dd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,8 @@
311311
}
312312
}
313313
],
314-
"singleQuote": true
314+
"singleQuote": true,
315+
"trailingComma": "all"
315316
},
316317
"renovate": {
317318
"extends": [

src/renderer/pages/ConnectForm.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ const ConnectForm: FC<Props> = () => {
246246
useState(false);
247247

248248
const saveClientCertFromStore = (
249-
value: ClientCertFromStore | undefined
249+
value: ClientCertFromStore | undefined,
250250
): void => {
251251
setConnection({
252252
...connection,
@@ -272,7 +272,7 @@ const ConnectForm: FC<Props> = () => {
272272
};
273273

274274
const clientCertFiltersSummary = getClientCertFiltersSummary(
275-
connection?.clientCertFromStore
275+
connection?.clientCertFromStore,
276276
);
277277

278278
const saveCertText = (value: string): void => {

0 commit comments

Comments
 (0)