aboutsummaryrefslogtreecommitdiff
path: root/src/services/CommonService.ts
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2021-03-04 18:41:55 -0500
committerGitHub <noreply@github.com>2021-03-04 18:41:55 -0500
commitf355c91ff5c631da55a29d83b676648b8022a6b3 (patch)
treea8977ef1b5ff9f693bd3a11af719b81f8b95b5a7 /src/services/CommonService.ts
parentac3bff11b72792337c6260f29366aba0c8fc26dd (diff)
parentc9155214b20608e97fc29fe7ef0b660698d6b4fd (diff)
Merge pull request #277 from IvanIFChen/tma680-multiple-live-versions
[TMA-680] Allow Multiple Live Versions
Diffstat (limited to 'src/services/CommonService.ts')
-rw-r--r--src/services/CommonService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/CommonService.ts b/src/services/CommonService.ts
index 9fa7417f..5bc1174d 100644
--- a/src/services/CommonService.ts
+++ b/src/services/CommonService.ts
@@ -22,7 +22,7 @@ export const loadImageFromURL = async (url: string) => {
}
};
-export const getLiveVersion = async () => {
+export const getCurrentLiveVersions = async () => {
try {
const response = await fetch(VERSION_ENDPOINT, {method: 'GET'});
return response.status === 200 ? await response.json() : undefined;