Skip to content
This repository was archived by the owner on Apr 4, 2022. It is now read-only.

Commit

Permalink
[Explorer] Remove 'This project is in beta. Use at your own risk' mes…
Browse files Browse the repository at this point in the history
…sage in footer (#1036)

# Summary

Closes #1035 

Removed 'This project is in beta. Use at your own risk' message in footer

![image](https://user-images.githubusercontent.com/11525018/152871045-a022cffe-71c8-48e9-a180-7dc0e0a14222.png)


# To Test

1. Open any page. i.e: `Home`
    * You'll see the message 'This project is in beta. Use at your own risk' in footer has been removed.
  • Loading branch information
matextrem authored and alfetopito committed Feb 14, 2022
1 parent e7e5b97 commit 25bab0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/layout/GenericLayout/Footer/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const footerConfig = {
isBeta: true,
isBeta: false,
url: {
web: 'https://github.com/gnosis/gp-ui/tree/v',
// TODO: Pending to move and adapt the wiki
Expand Down
4 changes: 2 additions & 2 deletions src/components/layout/GenericLayout/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const FooterStyled = styled.footer`
flex: 1 1 auto;
color: ${({ theme }): string => theme.textSecondary2};
width: 100%;
justify-content: space-between;
justify-content: space-around;
margin: 0 auto;
${media.mediumDown} {
Expand Down Expand Up @@ -105,7 +105,7 @@ export const Footer: React.FC<FooterType> = (props) => {
const vaultRelayerContractAddress = getGpV2ContractAddress(networkId, 'GPv2VaultRelayer')
return (
<FooterStyled>
<BetaWrapper>{isBeta && 'This project is in beta. Use at your own risk.'}</BetaWrapper>
{isBeta && <BetaWrapper>This project is in beta. Use at your own risk.</BetaWrapper>}
<ContractsWrapper>
{settlementContractAddress && (
<VerifiedButton
Expand Down

0 comments on commit 25bab0f

Please sign in to comment.