Skip to content

Commit

Permalink
fix: revert rebranding (#1939)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacook authored May 4, 2023
1 parent 8de279a commit 8f84ccd
Show file tree
Hide file tree
Showing 115 changed files with 279 additions and 305 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/smoke/create_safe_simple.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('Create Safe form', () => {
// Ensure wallet is connected to correct chain via header
cy.contains('E2E Wallet @ Görli')

cy.contains('Create new Account').click()
cy.contains('Create new Safe').click()
})

it('should allow setting a name', () => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/smoke/create_tx.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ describe('Queue a transaction on 1/N', () => {
// Changes nonce to next one
cy.contains('Signing the transaction with nonce').click()
cy.contains('button', 'Edit').click()
cy.get('label').contains('Safe Account transaction nonce').next().clear().type(currentNonce)
cy.get('label').contains('Safe transaction nonce').next().clear().type(currentNonce)
cy.contains('Confirm').click()

// Asserts the execute checkbox exists
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/smoke/load_safe.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Load existing Safe', () => {
cy.contains('Accept selection').click()

// Enters Loading Safe form
cy.contains('button', 'Add existing Account').click()
cy.contains('button', 'Add existing Safe').click()
cy.contains('Connect wallet & select network')
})

Expand Down
22 changes: 9 additions & 13 deletions public/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/address-book/ImportDialog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const ImportDialog = ({ handleClose }: { handleClose: () => void }): ReactElemen
{error && <ErrorMessage>{error}</ErrorMessage>}

<Typography>
Only CSV files exported from a {'Safe{Wallet}'} can be imported.
Only CSV files exported from a {'Safe'} can be imported.
<br />
<ExternalLink
href="https://help.safe.global/en/articles/5299068-address-book-export-and-import"
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/CheckWallet/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe('CheckWallet', () => {
expect(container.querySelector('button')).toBeDisabled()
expect(container.querySelector('span[aria-label]')).toHaveAttribute(
'aria-label',
`Your connected wallet is not an owner of this Safe Account`,
`Your connected wallet is not an owner of this Safe`,
)
})

Expand Down
2 changes: 1 addition & 1 deletion src/components/common/CheckWallet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type CheckWalletProps = {

enum Message {
WalletNotConnected = 'Please connect your wallet',
NotSafeOwner = 'Your connected wallet is not an owner of this Safe Account',
NotSafeOwner = 'Your connected wallet is not an owner of this Safe',
OnlySpendingLimitBeneficiary = 'You can only create ERC-20 transactions within your spending limit',
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/common/CookieBanner/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const CookieBannerPopup = ({ warningKey }: { warningKey?: CookieType }): ReactEl
/>
<br />
<Typography variant="body2" color="background.paper">
Help us make the app better. We never track your Safe Account address or wallet addresses, or any
Help us make the app better. We never track your Safe address or wallet addresses, or any
transaction data.
</Typography>
</Box>
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/MetaTags/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { lightPalette, darkPalette } from '@safe-global/safe-react-components'

const descriptionText =
'Safe (prev. Gnosis Safe) is the most trusted platform to manage digital assets on Ethereum and multiple EVMs. Over $40B secured.'
const titleText = 'Safe{Wallet}'
const titleText = 'Safe'

const MetaTags = ({ prefetchUrl }: { prefetchUrl: string }) => (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const PairingDescription = (): ReactElement => {
return (
<>
<Typography variant="caption" align="center">
Scan this code in the {'Safe{Wallet}'} mobile app to sign transactions with your mobile device.
Scan this code in the {'Safe'} mobile app to sign transactions with your mobile device.
<br />
<ExternalLink href={HELP_ARTICLE} title="Learn more about mobile pairing.">
Learn more about this feature.
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/SafeLoadingError/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const SafeLoadingError = ({ children }: { children: ReactNode }): ReactElement =
return (
<PagePlaceholder
img={<img src="/images/common/error.png" alt="A vault with a red icon in the bottom right corner" />}
text="This Safe Account couldn't be loaded"
text="This Safe couldn't be loaded"
>
<Link href={AppRoutes.welcome} passHref>
<Button variant="contained" color="primary" size="large" sx={{ mt: 2 }}>
Expand Down
Loading

0 comments on commit 8f84ccd

Please sign in to comment.