Skip to content

Commit

Permalink
Fix: update mods issuer and countdown timer
Browse files Browse the repository at this point in the history
  • Loading branch information
janewang committed Sep 8, 2023
1 parent 8d75774 commit 31104e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/common/ProgressTracker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ const ProgressTracker = () => {
function updateCountdown() {
const nowLocal = moment(); // Get the current local time
const timestamp = electionStarted
? IAHShutDownEndTime
: IAHShutDownStartTime;
? IAHShutDownStartTime
: IAHShutDownEndTime;
const futureDateLocal = timestamp.clone().tz(userTimezone);

// Calculate the time remaining
Expand Down
2 changes: 1 addition & 1 deletion src/utils/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function getConfig() {
succes_fractal_state: 'facescan',
regen_issuer_contract: 'issuer.regens.near',
vibe_issuer_contract: 'issuer.proofofvibes.near',
mods_issuer: 'gwg.sputnik-dao.near',
mods_issuer: 'community.i-am-human.near',
election_contract: 'elections.ndc-gwg.near',
};
switch (environment) {
Expand Down

0 comments on commit 31104e1

Please sign in to comment.