Skip to content

Commit

Permalink
fix(packages): updates to the latest version of imgur to resolve impo…
Browse files Browse the repository at this point in the history
…rt issues
  • Loading branch information
KenEucker committed Jan 22, 2024
1 parent 7a5a3dd commit 796caa2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
3 changes: 1 addition & 2 deletions functions/common/methods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ export const sendEmail = async (to: string, subject: string, locals: any, templa
text = liquid.parseAndRenderSync(textTemplate, locals)
// }
} catch (e) {
console.log({ e })
console.error('sendEmail error', { e })
}

if (!html.length) {
Expand Down Expand Up @@ -1138,7 +1138,6 @@ export const getBikeTagPlayerProfile = async (
source: 'sanity',
},
)
console.log({ playerName, playerProfileResult })
const playerProfile = playerProfileResult.success ? playerProfileResult.data : {}
const mergedProfile = { ...profile, ...playerProfile }

Expand Down
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "biketag-vue",
"version": "3.3.1",
"version": "3.3.2",
"license": "AGPL-3.0-or-later",
"author": "Ken Eucker",
"bugs": {
Expand Down Expand Up @@ -31,7 +31,7 @@
"@vueuse/head": "^2.0.0",
"ajv": "^8.12.0",
"autoprefixer": "^10.4.17",
"biketag": "^3.3.1",
"biketag": "^3.3.2",
"bootstrap": "^5.3.2",
"bootstrap-vue-next": "^0.15.5",
"crypto-js": "^4.2.0",
Expand Down Expand Up @@ -66,7 +66,7 @@
"vue3-markdown-it": "^1.0.10"
},
"peerDependencies": {
"biketag": "^3.3.0",
"biketag": "^3.3.2",
"pinia": "^2.0.0",
"vue": "^3.0.0",
"vue-router": "^4.0.0"
Expand Down
3 changes: 2 additions & 1 deletion src/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ export const BikeTagEnv = {
HOST_KEY: process.env.HOST_KEY ?? BikeTagDefaults.hostKey,
BIKETAG_AUTHED: process.env.B_AUTHED ?? process.env.BIKETAG_AUTHED ?? null,
/* Google Configuration */
G_AKEY: process.env.G_AKEY ?? process.env.GOOGLE_ACCESS_TOKEN ?? null,
G_AKEY:
process.env.G_AKEY ?? process.env.GOOGLE_ACCESS_TOKEN ?? process.env.GOOGLE_API_KEY ?? null,
G_CID: process.env.G_CID ?? process.env.GOOGLE_CLIENT_ID ?? null,
G_CSECRET: process.env.G_CSECRET ?? process.env.GOOGLE_CLIENT_SECRET ?? null,
G_EMAIL: process.env.G_EMAIL ?? process.env.GOOGLE_EMAIL_ADDRESS ?? null,
Expand Down

0 comments on commit 796caa2

Please sign in to comment.