Skip to content
This repository was archived by the owner on Apr 4, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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