From f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 Mon Sep 17 00:00:00 2001 From: Kirill Rogovoy Date: Mon, 19 Jul 2021 20:06:08 +0300 Subject: Apply Prettier --- app/services/api/api-config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/services/api/api-config.ts') diff --git a/app/services/api/api-config.ts b/app/services/api/api-config.ts index 3061563..b939c0e 100644 --- a/app/services/api/api-config.ts +++ b/app/services/api/api-config.ts @@ -1,7 +1,7 @@ // Use this import if you want to use "env.js" file // const { API_URL } = require("../../config/env") // Or just specify it directly like this: -const API_URL = "http://example.com" +const API_URL = 'http://example.com' /** * The options used to configure the API. @@ -22,6 +22,6 @@ export interface ApiConfig { * The default configuration for the app. */ export const DEFAULT_API_CONFIG: ApiConfig = { - url: API_URL || "https://jsonplaceholder.typicode.com", + url: API_URL || 'https://jsonplaceholder.typicode.com', timeout: 10000, } -- cgit v1.2.3