Skip to content

Commit

Permalink
Fix env
Browse files Browse the repository at this point in the history
  • Loading branch information
helagro committed Mar 15, 2024
1 parent 6e523e4 commit 5c8b819
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/script/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
const emailAddrScrambled = env?.emailAddrScrambled ?? "B0bydWYsVGavdXRsb29rLmNvbQ=="
const phoneNrScrambled = env?.phoneNrScrambled ?? "VLzcDMhYWC1YWFhY"
const envNonNull = typeof env === "undefined" ? {} : env

const emailAddrScrambled = envNonNull.emailAddrScrambled ?? "B0bydWYsVGavdXRsb29rLmNvbQ=="
const phoneNrScrambled = envNonNull.phoneNrScrambled ?? "VLzcDMhYWC1YWFhY"

function loadContactDetails() {
const unscramble = (s) =>
Expand Down

0 comments on commit 5c8b819

Please sign in to comment.