Skip to content

Commit d55c7b6

Browse files
authored
update api urls (remove -staging) (#63)
1 parent d11cfc5 commit d55c7b6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/fa-icon-chooser/dev/runtime.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This dev-only module isn't processed by the bundler like the others,
22
// so we can't use a node env var to set this. Just hardcode it in one
33
// place at the top.
4-
const API_URL = 'https://api-staging.fontawesome.com';
4+
const API_URL = 'https://api.fontawesome.com';
55

66
const FaIconChooserDevExports = (function () {
77
let showingIconChooser = false;

packages/fa-icon-chooser/src/utils/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import defaultIconsSearchResultTemplate from './defaultIconsSearchResult.json';
22
import { valid as validSemver } from 'semver';
33
import { cloneDeep, get, set } from 'lodash';
44

5-
const FREE_CDN_URL = 'https://use-staging.fontawesome.com';
6-
const PRO_KIT_ASSET_URL = 'https://ka-p-staging.fontawesome.com';
7-
const FREE_KIT_ASSET_URL = 'https://ka-f-staging.fontawesome.com';
5+
const FREE_CDN_URL = 'https://use.fontawesome.com';
6+
const PRO_KIT_ASSET_URL = 'https://ka-p.fontawesome.com';
7+
const FREE_KIT_ASSET_URL = 'https://ka-f.fontawesome.com';
88

99
export type UrlTextFetcher = (url: string) => Promise<string>;
1010

0 commit comments

Comments
 (0)