diff --git a/src/renderer/src/components/stringReplacer.components.tsx b/src/renderer/src/components/stringReplacer.components.tsx index 5fdf7c5..344f8d6 100644 --- a/src/renderer/src/components/stringReplacer.components.tsx +++ b/src/renderer/src/components/stringReplacer.components.tsx @@ -7,6 +7,7 @@ export type internalizedChallenge = } +//Can be used for checking how many api challenges has no game variants paired. export const checkForMissingTranslations = (): string => { let number = 0; diff --git a/src/renderer/src/service/auth.service.ts b/src/renderer/src/service/auth.service.ts index 7bb7703..b405e2f 100644 --- a/src/renderer/src/service/auth.service.ts +++ b/src/renderer/src/service/auth.service.ts @@ -1,5 +1,4 @@ import { AuthModel } from '../model/auth.model' -import { checkForMissingTranslations } from '../components/stringReplacer.components' const AUTH_INFOS = 'PD3CV-AuthInfos' const NEBULA_ADDR = 'https://nebula.starbreeze.com' @@ -108,8 +107,5 @@ export const getUserChallenges = async () => { allChallengesData.push(...challengeData.data) } - //Check for missing translations (only checks for the game variant, since right now the api list should be filled with everything until new ones arrive) - //console.log("Replacing status: ",checkForMissingTranslations()); - return allChallengesData }