From 476323d928253fc193542edea4965bd134de7999 Mon Sep 17 00:00:00 2001 From: n4ze3m Date: Sun, 14 Apr 2024 18:32:16 +0530 Subject: [PATCH] Fix whitespace formatting in isTTSEnabled function in tts.ts --- src/services/tts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/tts.ts b/src/services/tts.ts index e853f2f..2d38d3e 100644 --- a/src/services/tts.ts +++ b/src/services/tts.ts @@ -36,7 +36,7 @@ export const setVoice = async (voice: string) => { export const isTTSEnabled = async () => { const data = await storage.get("isTTSEnabled") - if(!data || data.length === 0) { + if (!data || data.length === 0) { return true } return data === "true"