From b04d43b722ee65d7d284e13fc39f04682f21b985 Mon Sep 17 00:00:00 2001 From: Roman Cervantes Date: Wed, 23 Jan 2019 23:16:34 -0700 Subject: [PATCH] Updated share url --- src/components/Lists/ListOptions.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Lists/ListOptions.vue b/src/components/Lists/ListOptions.vue index 8733c424..c239d1c4 100755 --- a/src/components/Lists/ListOptions.vue +++ b/src/components/Lists/ListOptions.vue @@ -102,8 +102,8 @@ export default { shareUrl() { const url = process.env.NODE_ENV === 'development' - ? 'http://localhost:3000' - : 'https://gamebrary.com'; + ? 'http://localhost:5000' + : 'https://app.gamebrary.com'; return `${url}/#/s/${this.user.uid}/${this.platform.code}`; },