Skip to content

Commit

Permalink
advance
Browse files Browse the repository at this point in the history
  • Loading branch information
yuli-ferna committed Sep 1, 2023
1 parent a096d6f commit d13e969
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/sui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@

<script src="https://www.unpkg.com/@wormhole-foundation/wormhole-connect@0.0.5/dist/main.js"></script>
<script>
// To show Optimism option on SEPT 4th 2023
if (new Date() < new Date(2023, 8, 4)) {
// To show Optimism option on SEPT 8th 2023
if (new Date() < new Date(2023, 8, 8)) {
document.getElementById("cctp-default-text").style.display = "block";
document.getElementById("cctp-optimism-text").style.display = "none";

Expand Down
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ function App() {
[push]
);

// To show Optimism option on SEPT 4th 2023
// To show Optimism option on SEPT 8th 2023
const bannerMsg =
new Date() < new Date(2023, 8, 4)
new Date() < new Date(2023, 8, 8)
? "Experience frictionless USDC transfers between Ethereum, Avalanche, and Arbitrum with Circle's CCTP. "
: "Experience frictionless USDC transfers between Ethereum, Avalanche, Arbitrum, and Optimism with Circle's CCTP. ";

Expand Down

0 comments on commit d13e969

Please sign in to comment.