Skip to content

Commit b52d562

Browse files
committed
Revert "Use correct js single line comment style"
This reverts commit 37a7ae2.
1 parent 1451129 commit b52d562

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

apps/desktop/src/lib/config/appSettingsV2.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,27 +37,27 @@ export class SettingsService {
3737
}
3838

3939
export class AppSettings {
40-
// Whether the user has passed the onboarding flow.
40+
/** Whether the user has passed the onboarding flow. */
4141
onboardingComplete!: boolean;
42-
// Telemetry settings
42+
/** Telemetry settings */
4343
telemetry!: TelemetrySettings;
4444
}
4545

4646
export class TelemetrySettings {
47-
// Whether the anonymous metrics are enabled.
47+
/** Whether the anonymous metrics are enabled. */
4848
appMetricsEnabled!: boolean;
49-
// Whether anonymous error reporting is enabled.
49+
/** Whether anonymous error reporting is enabled. */
5050
appErrorReportingEnabled!: boolean;
51-
// Whether non-anonymous metrics are enabled.
51+
/** Whether non-anonymous metrics are enabled. */
5252
appNonAnonMetricsEnabled!: boolean;
5353
}
5454

55-
// Request updating the TelemetrySettings. Only the fields that are set are updated
55+
/** Request updating the TelemetrySettings. Only the fields that are set are updated */
5656
export class TelemetryUpdate {
57-
// Whether the anonymous metrics are enabled.
57+
/** Whether the anonymous metrics are enabled. */
5858
appMetricsEnabled?: boolean | undefined;
59-
// Whether anonymous error reporting is enabled.
59+
/** Whether anonymous error reporting is enabled. */
6060
appErrorReportingEnabled?: boolean | undefined;
61-
// Whether non-anonymous metrics are enabled.
61+
/** Whether non-anonymous metrics are enabled. */
6262
appNonAnonMetricsEnabled?: boolean | undefined;
6363
}

0 commit comments

Comments
 (0)