From fa79a28cdad6322436b0e5091c2b3eb88b980dc3 Mon Sep 17 00:00:00 2001 From: Markus Olsson Date: Tue, 25 Jun 2024 11:57:08 +0200 Subject: [PATCH] One day I'll learn to develop the softwares --- app/src/lib/stats/stats-store.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/src/lib/stats/stats-store.ts b/app/src/lib/stats/stats-store.ts index 616d7bf31a..522f77f122 100644 --- a/app/src/lib/stats/stats-store.ts +++ b/app/src/lib/stats/stats-store.ts @@ -34,10 +34,7 @@ import { getNotificationsEnabled } from '../stores/notifications-store' import { isInApplicationFolder } from '../../ui/main-process-proxy' import { getRendererGUID } from '../get-renderer-guid' import { ValidNotificationPullRequestReviewState } from '../valid-notification-pull-request-review' -import { - useExternalCredentialHelper, - useExternalCredentialHelperKey, -} from '../trampoline/use-external-credential-helper' +import { useExternalCredentialHelperKey } from '../trampoline/use-external-credential-helper' import { enableExternalCredentialHelper } from '../feature-flag' type PullRequestReviewStatFieldInfix = @@ -408,7 +405,7 @@ interface ICalculatedStats { * Whether or not the user has enabled the external credential helper or null * if the user has not yet made an active decision **/ - readonly useExternalCredentialHelper: boolean | null + readonly useExternalCredentialHelper?: boolean | null } type DailyStats = ICalculatedStats &