summaryrefslogtreecommitdiff
path: root/app/services/api/api-config.ts
diff options
context:
space:
mode:
authorKirill Rogovoy <[email protected]>2021-07-19 20:06:08 +0300
committerKirill Rogovoy <[email protected]>2021-07-19 20:06:08 +0300
commitf0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 (patch)
tree575c0ff2cbb846252bd2e494c81c396846aab2f6 /app/services/api/api-config.ts
parent67ad38d0a7cd319623e9f41c0c381ed5c5f6f973 (diff)
Apply Prettier
Diffstat (limited to 'app/services/api/api-config.ts')
-rw-r--r--app/services/api/api-config.ts4
1 files changed, 2 insertions, 2 deletions
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,
}