From 73ba955e344c8ccedd43235495ef8b72b5a2b6fd Mon Sep 17 00:00:00 2001 From: Ricardo Cino Date: Wed, 22 Jun 2022 00:32:18 +0200 Subject: chore: Transform AppStore.js into Typescript (#329) * turn actions into typescript * correct tsconfig * added TypedStore --- src/config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/config.ts') diff --git a/src/config.ts b/src/config.ts index 62b4f4e68..d29480dc6 100644 --- a/src/config.ts +++ b/src/config.ts @@ -86,7 +86,7 @@ export const SEARCH_ENGINE_NAMES = { export const SEARCH_ENGINE_URLS = { [SEARCH_ENGINE_STARTPAGE]: ({ searchTerm }) => - `https://www.startpage.com/sp/search?query=${searchTerm}`, + `https://www.startpage.com/sp/search?query=${searchTerm}`, [SEARCH_ENGINE_GOOGLE]: ({ searchTerm }) => `https://www.google.com/search?q=${searchTerm}`, [SEARCH_ENGINE_DDG]: ({ searchTerm }) => @@ -105,7 +105,7 @@ const TODO_RTM_URL = 'https://www.rememberthemilk.com/'; const TODO_ANYDO_URL = 'https://desktop.any.do/'; const TODO_GOOGLETASKS_URL = 'https://tasks.google.com/embed/?origin=https%3A%2F%2Fcalendar.google.com&fullWidth=1'; -const TODO_GOOGLEKEEP_URL = 'https://keep.google.com/' +const TODO_GOOGLEKEEP_URL = 'https://keep.google.com/'; export const TODO_SERVICE_RECIPE_IDS = { [TODO_TODOIST_URL]: 'todoist', @@ -152,8 +152,8 @@ export const SIDEBAR_SERVICES_LOCATION_BOTTOMRIGHT = 2; export const SIDEBAR_SERVICES_LOCATION = { [SIDEBAR_SERVICES_LOCATION_TOPLEFT]: 'Top/Left', [SIDEBAR_SERVICES_LOCATION_CENTER]: 'Center', - [SIDEBAR_SERVICES_LOCATION_BOTTOMRIGHT]: 'Bottom/Right' -} + [SIDEBAR_SERVICES_LOCATION_BOTTOMRIGHT]: 'Bottom/Right', +}; export const ICON_SIZES = { 0: 'Very small icons', -- cgit v1.2.3-54-g00ecf