From 7716c5f9c6dcf49b804627819284c157d8bd6dc6 Mon Sep 17 00:00:00 2001 From: Arthur Jamet Date: Mon, 24 Apr 2023 16:48:45 +0100 Subject: [PATCH] Front: Indet fix --- front/models/LocalSettings.ts | 10 +++++----- front/models/UserSettings.ts | 18 +++++++++--------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/front/models/LocalSettings.ts b/front/models/LocalSettings.ts index 137c201..6f65462 100644 --- a/front/models/LocalSettings.ts +++ b/front/models/LocalSettings.ts @@ -1,10 +1,10 @@ interface LocalSettings { deviceId: number, - micVolume: number, - colorScheme: 'light' | 'dark' | 'system', - lang: 'fr' | 'en' | 'sp', - difficulty: 'beg' | 'inter' | 'pro', - colorBlind: boolean, + micVolume: number, + colorScheme: 'light' | 'dark' | 'system', + lang: 'fr' | 'en' | 'sp', + difficulty: 'beg' | 'inter' | 'pro', + colorBlind: boolean, customAds: boolean, dataCollection: boolean } \ No newline at end of file diff --git a/front/models/UserSettings.ts b/front/models/UserSettings.ts index 30e8633..a03b116 100644 --- a/front/models/UserSettings.ts +++ b/front/models/UserSettings.ts @@ -1,13 +1,13 @@ interface UserSettings { - notifications: { - pushNotif: boolean, - emailNotif: boolean, - trainNotif: boolean, - newSongNotif: boolean - }, - weeklyReport: boolean, - leaderBoard: boolean, - showActivity: boolean, + notifications: { + pushNotif: boolean, + emailNotif: boolean, + trainNotif: boolean, + newSongNotif: boolean + }, + weeklyReport: boolean, + leaderBoard: boolean, + showActivity: boolean, recommendations: boolean }