Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
zzq0826 committed Aug 14, 2024
1 parent 1b5da2b commit 77254c1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/sh

cat <<EOF > /usr/share/nginx/html/runtime-env.js
window.REACT_APP_VERSION = "$REACT_APP_VERSION";
window.REACT_APP_ETH_SYMBOL = "$REACT_APP_ETH_SYMBOL";
window.REACT_APP_BASE_CHAIN = "$REACT_APP_BASE_CHAIN";
window.REACT_APP_ROLLUP = "$REACT_APP_ROLLUP";
Expand Down
3 changes: 1 addition & 2 deletions src/pages/bridge/FAQ/link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { Stack, SvgIcon, Typography } from "@mui/material"
import { styled } from "@mui/system"

import { ReactComponent as LinkSvg } from "@/assets/svgs/bridge/external-link.svg"
import { requireEnv } from "@/utils"

const FAQsLink = styled(Link)(({ theme }) => ({
color: "#6D6D6D",
Expand All @@ -28,7 +27,7 @@ const BridgeLinks = () => {
Terms of Service
<SvgIcon component={LinkSvg} inheritViewBox></SvgIcon>
</FAQsLink>
<Typography> © Version {requireEnv("REACT_APP_VERSION")}</Typography>
<Typography> © Version V2.2.16</Typography>
</Stack>
)
}
Expand Down

0 comments on commit 77254c1

Please sign in to comment.